summaryrefslogtreecommitdiff
path: root/abstract/value_domain.ml
diff options
context:
space:
mode:
authorAlex Auvolat <alex.auvolat@ansys.com>2014-06-18 12:13:17 +0200
committerAlex Auvolat <alex.auvolat@ansys.com>2014-06-18 12:13:17 +0200
commit0caa1ebe947646459295c6a66da6bf19f399c21e (patch)
tree715b4e786a7df2a3f847230baaa8d26f9ed9e680 /abstract/value_domain.ml
parent5ac14cee1bdb9f2ccc40ad6eb1841b5c2ed584d1 (diff)
downloadscade-analyzer-0caa1ebe947646459295c6a66da6bf19f399c21e.tar.gz
scade-analyzer-0caa1ebe947646459295c6a66da6bf19f399c21e.zip
Abstract interpretation gives good results on the limiter example.
Diffstat (limited to 'abstract/value_domain.ml')
-rw-r--r--abstract/value_domain.ml2
1 files changed, 1 insertions, 1 deletions
diff --git a/abstract/value_domain.ml b/abstract/value_domain.ml
index 7b9d557..bb27126 100644
--- a/abstract/value_domain.ml
+++ b/abstract/value_domain.ml
@@ -8,7 +8,7 @@ let string_of_bound = function
| Int i -> string_of_int i
let string_of_itv = function
| Bot -> "⊥"
- | Itv(a, b) -> "[" ^ (string_of_bound a) ^ ";" ^ (string_of_bound b) ^ "]"
+ | Itv(a, b) -> "[" ^ (string_of_bound a) ^ "; " ^ (string_of_bound b) ^ "]"
module type VALUE_DOMAIN = sig
type t