Skip to content

Commit 4b18cfa

Browse files
committed
Minor simplification.
1 parent 55a41e4 commit 4b18cfa

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

aima-gui/src/main/java/aima/gui/fx/demo/search/CspMapColoringApp.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -184,8 +184,7 @@ public void finalize() {
184184
*/
185185
public void simulate() {
186186
stepCounter = 0;
187-
Assignment result = strategy.solve(csp.copyDomains());
188-
updateStateView(csp, result);
187+
strategy.solve(csp.copyDomains());
189188
}
190189

191190
/**

0 commit comments

Comments
 (0)