Subversion Repositories programming

Rev

Show changed files | Details | Compare with Previous | Blame | RSS feed

Filtering Options

Rev Age Author Path Log message Diff
387 6833 d 19 h ira /school/cs408/p1/ DrawGraph.py:
* Allow layout engine to be chooseable at render-time.

PuzzleSearch.py:
* Implement an 8-Puzzle specific searcher. This assumes that
each searchable node has a get_children() method.
* This implementation does not need a full Graph() to operate.
* FIXME: still only searches via BFS.
* FIXME: still has no inf-time limiter.
 
383 6835 d 18 h ira /school/cs408/ DrawGraph.py:
* Move to Project 1 directory.

Graph.py:
* Move to Project 1 directory.

GraphSearch.py:
* Move to Project 1 directory.

Generator.py:
* A basic generation class.

PuzzleGenerator.py:
* A class to generate 8Puzzles.
 
379 6836 d 22 h ira /school/cs408/ Graph.py:
* Add Edge class, which abstracts out edge properties.
* Add functions for getting / setting edge properties.

DrawGraph.py:
* Switch from using the vertices / edges to using an already
created Graph directly. This enables colors, labels, etc.
* Update examples to match the new constructor.
 
378 6837 d 18 h ira /school/cs408/ DrawGraph.py:
* Update Documentation.
* Add Author, Copyright, and License.
 
377 6837 d 18 h ira /school/cs408/ DrawGraph.py:
* A class that will draw a Graph in svg,png, or png formats.