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

fixing bugs. case 5 runs. hits infinite loop #19

Draft
wants to merge 28 commits into
base: main
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
28 commits
Select commit Hold shift + click to select a range
f907b99
fixing bugs. case 5 runs. hits infinite loop
connoralittle Sep 3, 2024
fc5b6f5
resize is needed not reserve
connoralittle Sep 4, 2024
ffd6f0b
templated policies, tentatively working. next step is matched_step
connoralittle Sep 9, 2024
094bdfa
continued bug squashing
connoralittle Sep 25, 2024
56aabce
I think this is the root source of many bugs. This variable is used b…
connoralittle Sep 25, 2024
590631b
decoupled outcome to name. Now on order recieved.
connoralittle Sep 25, 2024
e68d795
visualize runs with an off by 1 error
connoralittle Nov 12, 2024
651cf52
visualize works again properly
connoralittle Nov 14, 2024
9aff1f4
pr2 search works!
connoralittle Nov 18, 2024
6d109b6
various fixes while searching for blowup
connoralittle Jan 2, 2025
1c00802
New versions of the sub-modules.
haz Jan 2, 2025
9b07ac0
Mirror the latest of the core.
haz Jan 2, 2025
5789b28
Hush now.
haz Jan 6, 2025
31c6d24
Put the logging checks in the right place.
haz Jan 6, 2025
d734917
Fixing some nasty bugs with heuristic logging.
haz Jan 6, 2025
ab172f9
Fixed a goal bug, but still stuck.
haz Jan 6, 2025
dc8febc
Merge pull request #1 from haz/main
connoralittle Jan 6, 2025
960f707
off by 1
connoralittle Jan 6, 2025
8a57d39
Fixing some memory issues caught by memcache.
haz Jan 8, 2025
b97bb3d
Merge pull request #2 from haz/main
connoralittle Jan 8, 2025
ee53234
Couple more memory optimizations.
haz Jan 8, 2025
060dd9a
heuristic search works now
connoralittle Jan 8, 2025
e5055a1
cleaned up previous push
connoralittle Jan 8, 2025
2696126
Merge pull request #3 from haz/main
connoralittle Jan 8, 2025
3bf5fe7
rearranged again
connoralittle Jan 8, 2025
9422522
Merge branch 'main' of https://github.com/connoralittle/pr2_new
connoralittle Jan 8, 2025
934dfa3
Reverting memleak fix.
haz Jan 8, 2025
03da6ee
Merge pull request #4 from haz/main
connoralittle Jan 8, 2025
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
2 changes: 1 addition & 1 deletion fond-domains
Submodule fond-domains updated 112 files
4 changes: 2 additions & 2 deletions pr2
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ set -e

# Settings
BASEDIR="$(dirname "$0")/core/downward"
DEBUG_BUILD="debug64"
RELEASE_BUILD="release64"
DEBUG_BUILD="debug"
RELEASE_BUILD="release"

MAXWIDTH=5
INV_TIME_LIMIT="300"
Expand Down
Loading