We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3f95131 commit 9b0c161Copy full SHA for 9b0c161
docs/devel/ProofCaching.md
@@ -56,7 +56,15 @@ Schema: ([schema playground](https://dashjoin.github.io/#/schema))
56
"cachedSequents": {
57
"type": "array",
58
"items": {
59
- "type": "string"
+ "type": "object",
60
+ "properties": {
61
+ "stepIndex": {
62
+ "type": "number"
63
+ },
64
+ "sequent": {
65
+ "type": "string"
66
+ }
67
68
}
69
},
70
"cachedGraph": {
@@ -136,7 +144,10 @@ Example:
136
144
"java123456.java"
137
145
],
138
146
"cachedSequents": [
139
- "a==>b"
147
+ {
148
+ "stepIndex": 15,
149
+ "sequent": "a==>b"
150
140
151
141
152
142
153
"nodes": [
0 commit comments