File tree Expand file tree Collapse file tree 3 files changed +17
-4
lines changed Expand file tree Collapse file tree 3 files changed +17
-4
lines changed Original file line number Diff line number Diff line change 57
57
]
58
58
},
59
59
"devDependencies" : {
60
+ "ajv" : " ^7.2.4" ,
60
61
"gh-pages" : " ^5.0.0"
61
62
}
62
63
}
Original file line number Diff line number Diff line change @@ -9,10 +9,10 @@ import * as prog1_static from "../logic/calculi/static_prog1";
9
9
export const calculiList = [
10
10
meta . calculus ,
11
11
prog1_static . calculus ,
12
- // type_conversion.calculus,
13
- // expr_ty.calculus,
14
- // stmt_ty.calculus,
15
- // hoare.calculus,
12
+ type_conversion . calculus ,
13
+ expr_ty . calculus ,
14
+ stmt_ty . calculus ,
15
+ hoare . calculus ,
16
16
] ;
17
17
18
18
export let default_options = {
Original file line number Diff line number Diff line change @@ -76,4 +76,16 @@ export const app_renderer: AppDispatchRenderer<string> = {
76
76
export const const_renderer : ConstDispatchRenderer < string > = {
77
77
"Plus" : "+" ,
78
78
"Minus" : "-" ,
79
+
80
+ "UnEqual" : "!=" ,
81
+ // "Unequal": "!=",
82
+ "Equal" : "==" ,
83
+ "Less" : "<" ,
84
+ "LessEqual" : "≤" ,
85
+ "Greater" : ">" ,
86
+ "GreaterEqual" : "≥" ,
87
+ "Div" : "/" ,
88
+ "Mul" : "*" ,
89
+ // "Addr": "&",
90
+ // "Indir": "*",
79
91
} ;
You can’t perform that action at this time.
0 commit comments