occam-verify-cli 1.0.713 → 1.0.714

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -112,8 +112,7 @@ async function unifyStatementAsSatisfiesAssertion(statement, reference, satisfie
112
112
  const satisfiable = axiom.isSatisfiable();
113
113
 
114
114
  if (satisfiable) {
115
- const substitutions = [],
116
- topLevelAssertionUnifies = axiom.unifyTopLevelAssertion(topLevelAssertion, substitutions, context);
115
+ const topLevelAssertionUnifies = axiom.unifyTopLevelAssertion(topLevelAssertion, context);
117
116
 
118
117
  if (topLevelAssertionUnifies) {
119
118
  const substitutionsCorrelates = satisfiesAssertion.correlateSubstitutions(substitutions, context);
@@ -155,19 +154,6 @@ async function unifyStatementWithTopLevelAssertion(statement, reference, satisfi
155
154
  statementAndSubproofOrProofAssertionsUnify = await topLevelAssertion.unifyStatementAndSubproofOrProofAssertions(statement, subproofOrProofAssertions, context);
156
155
 
157
156
  if (statementAndSubproofOrProofAssertionsUnify) {
158
- const metavariable = reference.getMetavariable();
159
-
160
- debugger
161
-
162
- // synthetically((context) => {
163
- // const { StatementSubstitution } = elements;
164
- //
165
- // StatementSubstitution.fromStatementAndMetavariable(statement, metavariable, context);
166
-
167
- // vaiddate
168
- //
169
- // }, generalContext, specificContext);
170
-
171
157
  statementUnifiesWithTopLevelAssertion = true;
172
158
  }
173
159