Skip to content

Commit

Permalink
Several general changes:
Browse files Browse the repository at this point in the history
- Added more details to SolverException when being thrown
- Removed ResultListModel.java
- Intoduced support to new entitites in the XML file
  • Loading branch information
kotik-coder committed Nov 29, 2021
1 parent a340eb8 commit 0bdf7a7
Show file tree
Hide file tree
Showing 3 changed files with 210 additions and 261 deletions.
2 changes: 1 addition & 1 deletion src/main/java/pulse/input/Range.java
Original file line number Diff line number Diff line change
Expand Up @@ -208,7 +208,7 @@ public void optimisationVector(ParameterVector output, List<Flag> flags) {
@Override
public void assign(ParameterVector params) throws SolverException {
if(!params.validate())
throw new SolverException("Parameter values not sensible");
throw new SolverException("Parameter values not sensible: " + params);

NumericProperty p = null;

Expand Down
Loading

0 comments on commit 0bdf7a7

Please sign in to comment.