mirror of
https://gitlab.kit.edu/uskyk/typicalc.git
synced 2024-11-08 18:30:42 +00:00
move unification error to end of unification
This commit is contained in:
parent
dabde5e455
commit
a8652642fc
@ -189,10 +189,6 @@ public class LatexCreatorConstraints implements StepVisitor {
|
||||
latex.append(generateUnificationName());
|
||||
|
||||
boolean markError = error.isPresent();
|
||||
error.ifPresent(latex::append); // TODO: translation
|
||||
if (error.isPresent()) {
|
||||
latex.append(LATEX_NEW_LINE);
|
||||
}
|
||||
List<Constraint> unificationConstraints = step.getConstraints();
|
||||
if (!unificationConstraints.isEmpty()) {
|
||||
latex.append(UNIFY + PAREN_LEFT + LATEX_CURLY_LEFT);
|
||||
@ -240,6 +236,10 @@ public class LatexCreatorConstraints implements StepVisitor {
|
||||
latex.append(LATEX_NEW_LINE);
|
||||
}
|
||||
latex.append(SPLIT_END);
|
||||
if (error.isPresent()) {
|
||||
latex.append(LATEX_NEW_LINE + AMPERSAND);
|
||||
}
|
||||
error.ifPresent(latex::append); // TODO: translation
|
||||
steps.add(latex.toString());
|
||||
}
|
||||
return steps;
|
||||
|
Loading…
Reference in New Issue
Block a user