Skip to content

Commit

Permalink
Merge pull request #362 from Serrof/issue-361
Browse files Browse the repository at this point in the history
Issue 361
  • Loading branch information
Serrof authored Dec 20, 2024
2 parents 01a2808 + 8361f74 commit c308aae
Show file tree
Hide file tree
Showing 7 changed files with 8 additions and 27 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -111,14 +111,6 @@ public int getOrder() {
return functions[0].getOrder();
}

/** Get the number of parameters of the map.
* @return number of parameters of the map
*/
@Deprecated
public int getNbParameters() {
return getFreeParameters();
}

/** Get the number of functions of the map.
* @return number of functions of the map
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -128,15 +128,6 @@ public static SparseGradient createVariable(final int idx, final double value) {
return new SparseGradient(value, Collections.singletonMap(idx, 1.0));
}

/**
* Find the number of variables.
* @return number of variables
*/
@Deprecated
public int numVars() {
return getFreeParameters();
}

/**
* Get the derivative with respect to a particular index variable.
*
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -102,14 +102,6 @@ public int getOrder() {
return functions[0].getOrder();
}

/** Get the number of parameters of the map.
* @return number of parameters of the map
*/
@Deprecated
public int getNbParameters() {
return getFreeParameters();
}

/** Get the number of functions of the map.
* @return number of functions of the map
*/
Expand Down
3 changes: 3 additions & 0 deletions hipparchus-ode/src/changes/changes.xml
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,9 @@ If the output is not quite correct, check for invisible trailing spaces!
</release>
<body>
<release version="4.0" date="TBD" description="TBD">
<action dev="serrof" type="update" issue="issues/361">
Rename DEFAULT_MAXCHECK as DEFAULT_MAX_CHECK.
</action>
<action dev="serrof" type="add" issue="issues/335">
Add boolean for propagation direction in (Field)AdaptableInterval.
</action>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ public abstract class AbstractFieldODEDetector<T extends AbstractFieldODEDetecto
implements FieldODEEventDetector<E> {

/** Default maximum checking interval (s). */
public static final double DEFAULT_MAXCHECK = 600;
public static final double DEFAULT_MAX_CHECK = 600;

/** Default convergence threshold (s). */
public static final double DEFAULT_THRESHOLD = 1.e-6;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
public abstract class AbstractODEDetector<T extends AbstractODEDetector<T>> implements ODEEventDetector {

/** Default maximum checking interval (s). */
public static final double DEFAULT_MAXCHECK = 600;
public static final double DEFAULT_MAX_CHECK = 600;

/** Default convergence threshold (s). */
public static final double DEFAULT_THRESHOLD = 1.e-6;
Expand Down
3 changes: 3 additions & 0 deletions src/changes/changes.xml
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,9 @@ If the output is not quite correct, check for invisible trailing spaces!
</properties>
<body>
<release version="4.0" date="TBD" description="TBD">
<action dev="serrof" type="update" issue="issues/361">
Rename DEFAULT_MAXCHECK as DEFAULT_MAX_CHECK.
</action>
<action dev="luc" type="fix" issue="issuers/360">
Increased dimension of directions numbers in Sobol sequence generation.
</action>
Expand Down

0 comments on commit c308aae

Please sign in to comment.