Skip to content

Commit

Permalink
set universe to zero in mk_subtype_of_unit
Browse files Browse the repository at this point in the history
  • Loading branch information
nikswamy committed Jan 11, 2025
1 parent ff16b6e commit e8a1ba2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/smtencoding/FStarC.SMTEncoding.Term.fst
Original file line number Diff line number Diff line change
Expand Up @@ -1175,7 +1175,7 @@ let mk_Valid t = match t.tm with
| _ ->
mkApp("Valid", [t]) t.rng
let mk_unit_type = mkApp("Prims.unit", []) norng
let mk_subtype_of_unit v = mkApp("Prims.subtype_of", [mk_U_unknown;mk_U_unknown;v;mk_unit_type]) v.rng // GE: FIXME
let mk_subtype_of_unit v = mkApp("Prims.subtype_of", [mk_U_zero;mk_U_zero;v;mk_unit_type]) v.rng
let mk_HasType v t = mkApp("HasType", [v;t]) t.rng
let mk_HasTypeZ v t = mkApp("HasTypeZ", [v;t]) t.rng
let mk_IsTotFun t = mkApp("IsTotFun", [t]) t.rng
Expand Down

0 comments on commit e8a1ba2

Please sign in to comment.