diff --git a/build.gradle.kts b/build.gradle.kts index 9f912f432a..97625cf2bc 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -10,7 +10,7 @@ buildscript { allprojects { group = "hu.bme.mit.inf.theta" - version = "2.0.0" + version = "2.0.1" apply(from = rootDir.resolve("gradle/shared-with-buildSrc/mirrors.gradle.kts")) } diff --git a/subprojects/cfa-cli/README.md b/subprojects/cfa-cli/README.md index ecf21ebcbe..7e927e844c 100644 --- a/subprojects/cfa-cli/README.md +++ b/subprojects/cfa-cli/README.md @@ -74,8 +74,8 @@ All arguments are optional, except `--model`. * `LBE` (default): Large-block encoding, where sequential paths are treated as a single step for abstraction. * `--maxenum`: Maximal number of states to be enumerated when performing explicit-value analysis (`--domain EXPL`) and an expression cannot be deterministically evaluated. If the limit is exceeded, unknown values are propagated. -As a special (and default) case, `0` stands for infinite, but it should only be used if the model does not have any variable with unbounded domain. -In general, values between `5` to `50` perform well (see Section 3.1.1 of [our JAR paper](https://link.springer.com/content/pdf/10.1007%2Fs10817-019-09535-x.pdf) for more information). +As a special case, `0` stands for infinite, but it should only be used if the model does not have any variable with unbounded domain. +In general, values between `5` to `50` perform well (see Section 3.1.1 of [our JAR paper](https://link.springer.com/content/pdf/10.1007%2Fs10817-019-09535-x.pdf) for more information). The default is `10`. * `--refinement`: Refinement strategy, possible values: * `FW_BIN_ITP`: Forward binary interpolation, only performs well if `--prunestrategy` is `FULL`. * `BW_BIN_ITP`: Backward binary interpolation (see Section 3.2.1 of [our JAR paper](https://link.springer.com/content/pdf/10.1007%2Fs10817-019-09535-x.pdf) for more information). diff --git a/subprojects/cfa-cli/src/main/java/hu/bme/mit/theta/cfa/cli/CfaCli.java b/subprojects/cfa-cli/src/main/java/hu/bme/mit/theta/cfa/cli/CfaCli.java index 32716c6b04..370aa5745f 100644 --- a/subprojects/cfa-cli/src/main/java/hu/bme/mit/theta/cfa/cli/CfaCli.java +++ b/subprojects/cfa-cli/src/main/java/hu/bme/mit/theta/cfa/cli/CfaCli.java @@ -95,7 +95,7 @@ public class CfaCli { Encoding encoding = Encoding.LBE; @Parameter(names = "--maxenum", description = "Maximal number of explicitly enumerated successors (0: unlimited)") - Integer maxEnum = 0; + Integer maxEnum = 10; @Parameter(names = "--initprec", description = "Initial precision of abstraction") InitPrec initPrec = InitPrec.EMPTY;