Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix python related issues #25

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions mazes.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,9 @@ def __init__(self, position):
self.Neighbours = [None, None, None, None]
#self.Weights = [0, 0, 0, 0]

def __lt__(self, other):
return True

def __init__(self, im):

width = im.size[0]
Expand Down
4 changes: 2 additions & 2 deletions priority_queue.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

from FibonacciHeap import FibHeap
import heapq
import Queue
import queue

class PriorityQueue():
__metaclass__ = ABCMeta
Expand Down Expand Up @@ -88,7 +88,7 @@ def decreasekey(self, node, new_priority):

class QueuePQ(PriorityQueue):
def __init__(self):
self.pq = Queue.PriorityQueue()
self.pq = queue.PriorityQueue()
self.removed = set()
self.count = 0

Expand Down
2 changes: 1 addition & 1 deletion profile.py → profile_all.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ def profile():
for m in methods:
for i in inputs:
with tempfile.NamedTemporaryFile(suffix='.png') as tmp:
solve(SolverFactory(), m, "examples/%s.png" % i, tmp.name)
solve(SolverFactory(), m, "examples/%s.png" % i, tmp)

profiler = BProfile('profiler.png')
with profiler:
Expand Down