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 9394d72 commit fed7bf9Copy full SHA for fed7bf9
prover/strategies/core.md
@@ -63,10 +63,11 @@ cooled back into the sequence strategy.
63
64
```k
65
syntax ResultStrategy ::= "#hole"
66
- rule <strategy> S1 . S2 => S1 ~> #hole . S2 ... </strategy>
+ rule <strategy> S1 . S2 => S1 ~> #hole . S2 </strategy>
67
requires notBool(isResultStrategy(S1))
68
andBool notBool(isSequenceStrategy(S1))
69
- rule <strategy> S1:ResultStrategy ~> #hole . S2 => S1 . S2 ... </strategy>
+ rule <claim> GOAL:Pattern </claim>
70
+ <strategy> S1:ResultStrategy ~> #hole . S2 => subgoal(GOAL, S1 . S2) </strategy>
71
```
72
73
The `noop` (no operation) strategy is the unit for sequential composition:
0 commit comments