We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ea78522 commit b0d5639Copy full SHA for b0d5639
1 file changed
src/main/java/edu/uiowa/cs/clc/kind2/results/Type.java
@@ -34,9 +34,12 @@ public static Type getType(String type)
34
case "int16":
35
case "int32":
36
case "int64":
37
+ case "subrange":
38
return new Int();
39
case "real":
40
return new Real();
41
+ case "array":
42
+ return new Array(new Bool());
43
default:
44
{
45
if (type.matches("subrange \\[.*?\\] of int"))
0 commit comments