1
0
Fork 0
mirror of https://github.com/shlomif/PySolFC.git synced 2025-04-05 00:02:29 -04:00

Remove some unused code.

It was assigned but never used because we removed this dropdown because
it was redundant.
This commit is contained in:
Shlomi Fish 2017-05-22 17:18:26 +03:00
parent ae582a6c46
commit ec17c0743c

View file

@ -15,14 +15,6 @@ class BaseSolverDialog:
self, parent, title, kw.resizable, kw.default)
top_frame, bottom_frame = self.createFrames(kw)
self.createBitmaps(top_frame, kw)
#
self.solving_methods = {
'A*': 'a-star',
'Breadth-First Search': 'bfs',
'Depth-First Search': 'soft-dfs', # default
'A randomized DFS': 'random-dfs',
# '"Soft" DFS': 'soft-dfs',
}
self.games = {} # key: gamename; value: gameid
#