Implement unbounded iterations #69#120
Open
merkste wants to merge 1 commit intoprismmodelchecker:masterfrom
Open
Implement unbounded iterations #69#120merkste wants to merge 1 commit intoprismmodelchecker:masterfrom
merkste wants to merge 1 commit intoprismmodelchecker:masterfrom
Conversation
9a4f240 to
6f5b76b
Compare
6f5b76b to
d6c2116
Compare
Contributor
Author
|
There seems to be a problem with multi-objective. At least one test complains about the pareto curve having an unexpected number of points. |
Contributor
Author
I rebased the branch onto the current master. Now all tests pass on my system. I guess the failing test was due to a bug the has been fixed in master. |
d6c2116 to
fc20e65
Compare
fc20e65 to
8ed85b5
Compare
The switch -maxiters recognizes a new argument, 'Infinity' to indicate that the number of iteration should not be bounded. If a number is given, it has to be between zero and Integer.MAX_VALUE. The implementation stores these values as doubles. This allows to stick to comparisons like if(iters < max_iters) as +Infinity compares greater to all integer values.
8ed85b5 to
5545150
Compare
ca12ca0 to
6bf73df
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
The switch
-maxitersrecognizes a new argument,Infinityto indicate that the number of iteration should not be bounded. If a number is given, it has to be between zero andInteger.MAX_VALUE.The implementation stores these values as doubles. This allows to stick to comparisons like
if(iters < max_iters)as+Infinitycompares greater to all integer values.