Skip to content

Commit 36f1f02

Browse files
authored
misc: rephrase the message about YAFC failing to solve the model (#102)
The rewording makes it clear that, because the model could not be solved, it also could not be updated. Fixes #96
2 parents 0e560d2 + a3f87fe commit 36f1f02

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

YAFCmodel/Model/ProductionTable.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -417,7 +417,7 @@ public override async Task<string> Solve(ProjectPage page) {
417417
else {
418418
solver.Dispose();
419419
if (result == Solver.ResultStatus.INFEASIBLE) {
420-
return "YAFC tried to solve this model and failed. It then tried to find a deadlock loop, but failed again";
420+
return "YAFC failed to solve the model and to find deadlock loops. As a result, the model was not updated.";
421421
}
422422

423423
if (result == Solver.ResultStatus.ABNORMAL) {

0 commit comments

Comments
 (0)