Skip to content
Merged
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 .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,9 @@ quickcheck-tests.json
/dist/
/build/

# Julia
**/Manifest.toml

# Python
__pycache__/
*.py[cod]
Expand Down
6 changes: 5 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Makefile for problemreductions

.PHONY: help build test fmt clippy doc mdbook paper examples clean coverage rust-export compare qubo-testdata export-schemas release run-plan diagrams
.PHONY: help build test fmt clippy doc mdbook paper examples clean coverage rust-export compare qubo-testdata export-schemas release run-plan diagrams jl-testdata

# Default target
help:
Expand All @@ -22,6 +22,7 @@ help:
@echo " examples - Generate example JSON for paper"
@echo " export-schemas - Export problem schemas to JSON"
@echo " qubo-testdata - Regenerate QUBO test data (requires uv)"
@echo " jl-testdata - Regenerate Julia parity test data (requires julia)"
@echo " release V=x.y.z - Tag and push a new release (triggers CI publish)"
@echo " run-plan - Execute a plan with Claude autorun (latest plan in docs/plans/)"

Expand Down Expand Up @@ -114,6 +115,9 @@ check: fmt-check clippy test
qubo-testdata:
cd scripts && uv run python generate_qubo_tests.py

jl-testdata: ## Regenerate Julia parity test data
cd scripts/jl && julia --project=. generate_testdata.jl

# Release a new version: make release V=0.2.0
release:
ifndef V
Expand Down
4 changes: 4 additions & 0 deletions scripts/jl/Project.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
[deps]
ProblemReductions = "899c297d-f7d2-4ebf-8815-a35996def416"
Graphs = "86223c79-3864-5bf0-83f7-82e725a168b6"
JSON = "682c06a0-de6a-54ab-a142-c8b1cf79cde6"
Loading