- Split monolithic compact_sets.py into modular src/ directory - Add graph caching (pickle + JSON) with --cache-dir option - Add --output-dir, --rebuild-cache, --no-cache CLI options - Default seed is now None (random) instead of 42 - Add .gitignore entries for cache/ and output/
6 lines
85 B
Python
6 lines
85 B
Python
#!/usr/bin/env python
|
|
from src.io import main
|
|
|
|
if __name__ == "__main__":
|
|
main()
|