Skip to content

Commit

Permalink
fix(SNSBD-1): change group.id to com.synerset
Browse files Browse the repository at this point in the history
  • Loading branch information
pjazdzyk committed Jun 4, 2023
1 parent b0caa58 commit 289d751
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 8 deletions.
6 changes: 3 additions & 3 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -26,11 +26,11 @@
</dependency>
</dependencies>

<groupId>io.github.pjazdzyk</groupId>
<groupId>com.synerset</groupId>
<artifactId>brent-dekker-solver</artifactId>
<version>1.1.2</version>
<version>1.1.3</version>

<name>Brent Dekker Solver</name>
<name>brent-dekker-solver</name>
<description>The algorithm for finding roots of continuous and single-variable math functions,
based on a modified version of the Brent-Dekker algorithm.
</description>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
package io.github.pjazdzyk.brentsolver;
package com.synerset.brentsolver;

import java.util.function.DoubleFunction;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

import java.util.function.DoubleFunction;

/**
* BRENT-DEKKER ITERATIVE SOLVER - MODIFIED ALGORITHM PROPOSED BY Zhengqiu Zhang / International Journal of Experimental<br>
* Algorithms (IJEA), Volume (2) : Issue (1) : 2011
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package io.github.pjazdzyk.brentsolver;
package com.synerset.brentsolver;

public class BrentSolverException extends RuntimeException {

Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
package io.github.pjazdzyk.brentsolver;
package com.synerset.brentsolver;

import org.junit.jupiter.api.*;
import org.junit.jupiter.api.Assertions;
import org.junit.jupiter.api.BeforeEach;
import org.junit.jupiter.api.DisplayName;
import org.junit.jupiter.api.Test;
import org.junit.jupiter.params.ParameterizedTest;
import org.junit.jupiter.params.provider.Arguments;
import org.junit.jupiter.params.provider.MethodSource;
Expand Down

0 comments on commit 289d751

Please sign in to comment.