diff options
| author | Alasdair Armstrong | 2017-08-30 15:17:42 +0100 |
|---|---|---|
| committer | Alasdair Armstrong | 2017-08-30 15:17:42 +0100 |
| commit | 8fcbb9ab1260a51cdd3070874ff379b163b23567 (patch) | |
| tree | eb7d6371c47b490a4b576610c91728bbac0320b8 /src/pretty_print_lem_ast.ml | |
| parent | 7015d7f48b124c3329a3638b8d433d522b447b40 (diff) | |
| parent | ab7a419f6a39830bb9aa3a41be31c753b35616cb (diff) | |
Merge branch 'experiments' of https://bitbucket.org/Peter_Sewell/sail into experiments
Diffstat (limited to 'src/pretty_print_lem_ast.ml')
| -rw-r--r-- | src/pretty_print_lem_ast.ml | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/pretty_print_lem_ast.ml b/src/pretty_print_lem_ast.ml index adddcee6..c75c102f 100644 --- a/src/pretty_print_lem_ast.ml +++ b/src/pretty_print_lem_ast.ml @@ -221,6 +221,8 @@ and pp_format_nexp_constraint_lem (NC_aux(nc,l)) = | NC_not_equal(n1,n2) -> "(NC_not_equal " ^ pp_format_nexp_lem n1 ^ " " ^ pp_format_nexp_lem n2 ^ ")" | NC_or(nc1,nc2) -> "(NC_or " ^ pp_format_nexp_constraint_lem nc1 ^ " " ^ pp_format_nexp_constraint_lem nc2 ^ ")" | NC_and(nc1,nc2) -> "(NC_and " ^ pp_format_nexp_constraint_lem nc1 ^ " " ^ pp_format_nexp_constraint_lem nc2 ^ ")" + | NC_true -> "NC_true" + | NC_false -> "NC_false" | NC_nat_set_bounded(id,bounds) -> "(NC_nat_set_bounded " ^ pp_format_var_lem id ^ " [" ^ |
