diff options
Diffstat (limited to 'src/uk/ac/ox/cs/pagoda/util/PagodaProperties.java')
| -rw-r--r-- | src/uk/ac/ox/cs/pagoda/util/PagodaProperties.java | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/src/uk/ac/ox/cs/pagoda/util/PagodaProperties.java b/src/uk/ac/ox/cs/pagoda/util/PagodaProperties.java index 2c53063..e501821 100644 --- a/src/uk/ac/ox/cs/pagoda/util/PagodaProperties.java +++ b/src/uk/ac/ox/cs/pagoda/util/PagodaProperties.java | |||
| @@ -42,11 +42,15 @@ public class PagodaProperties { | |||
| 42 | if(config.containsKey("useAlwaysSimpleUpperBound")) { | 42 | if(config.containsKey("useAlwaysSimpleUpperBound")) { |
| 43 | defaultUseAlwaysSimpleUpperBound = | 43 | defaultUseAlwaysSimpleUpperBound = |
| 44 | Boolean.parseBoolean(config.getProperty("useAlwaysSimpleUpperBound")); | 44 | Boolean.parseBoolean(config.getProperty("useAlwaysSimpleUpperBound")); |
| 45 | logger.info("The simple upper bound is always used"); | 45 | if(defaultUseAlwaysSimpleUpperBound) |
| 46 | logger.info("By default the simple upper bound is always used"); | ||
| 46 | } | 47 | } |
| 47 | if(config.containsKey("useSkolemUpperBound")) { | 48 | if(config.containsKey("useSkolemUpperBound")) { |
| 48 | defaultUseSkolemUpperBound = Boolean.parseBoolean(config.getProperty("useSkolemUpperBound")); | 49 | defaultUseSkolemUpperBound = Boolean.parseBoolean(config.getProperty("useSkolemUpperBound")); |
| 49 | logger.info("The Skolem upper bound is enabled"); | 50 | if(defaultUseSkolemUpperBound) |
| 51 | logger.info("By default the Skolem upper bound is enabled"); | ||
| 52 | else | ||
| 53 | logger.info("By default the Skolem upper bound is disabled"); | ||
| 50 | } | 54 | } |
| 51 | 55 | ||
| 52 | } catch(IOException e) { | 56 | } catch(IOException e) { |
