├── .coveragerc ├── .devcontainer └── devcontainer.json ├── .dockerignore ├── .github ├── dependabot.yml └── workflows │ ├── check-pr.yml │ ├── codeql.yml │ ├── docs.yml │ └── test.yml ├── .gitignore ├── .pre-commit-config.yaml ├── .python-version ├── .vscode ├── extensions.json └── settings.json ├── CHANGELOG.md ├── CITATION.cff ├── CONTRIBUTING.md ├── Dockerfile ├── LICENSE ├── Makefile ├── README.md ├── docs ├── _config.yml ├── _toc.yml ├── api │ ├── debug.md │ ├── draco.ipynb │ ├── facts.ipynb │ ├── intro.md │ ├── programs.md │ ├── renderer.md │ ├── run.ipynb │ ├── schema.ipynb │ └── server.md ├── applications │ ├── data │ │ ├── example_charts.toml │ │ ├── kim2018_draco2.json │ │ └── saket2018_draco2.json │ ├── debug_draco.ipynb │ ├── design_space_exploration.ipynb │ ├── draco1_vs_draco2.ipynb │ ├── draco_learn.ipynb │ ├── recommendation.ipynb │ ├── renderer.ipynb │ └── server.md ├── bibliography.md ├── facts │ ├── encoding.md │ ├── examples.ipynb │ ├── facet.md │ ├── intro.md │ ├── mark.md │ ├── scale.md │ ├── schema.md │ ├── task.md │ └── view.md ├── favicon.ico ├── intro.md ├── jupyter-lite.json ├── jupyterlite_nb_patch.py ├── logo-dark.png ├── logo-light.png └── references.bib ├── draco ├── __init__.py ├── asp │ ├── constraints.lp │ ├── define.lp │ ├── examples │ │ ├── binned_histogram.lp │ │ ├── histogram.lp │ │ └── scatter.lp │ ├── generate.lp │ ├── hard.lp │ ├── helpers.lp │ ├── optimize.lp │ ├── soft.lp │ └── weights.lp ├── asp_utils.py ├── data_utils.py ├── debug.py ├── draco.py ├── fact_utils.py ├── learn.py ├── programs.py ├── renderer │ ├── __init__.py │ ├── altair │ │ ├── __init__.py │ │ ├── altair_renderer.py │ │ └── types.py │ ├── base_renderer.py │ └── utils.py ├── run.py ├── schema.py ├── server │ ├── __init__.py │ ├── __main__.py │ ├── draco_api.py │ ├── main.py │ ├── models │ │ ├── __init__.py │ │ ├── clingo.py │ │ ├── draco.py │ │ ├── renderer.py │ │ ├── shared.py │ │ └── utility.py │ ├── routers │ │ ├── __init__.py │ │ ├── base.py │ │ ├── clingo.py │ │ ├── draco.py │ │ ├── renderer.py │ │ └── utility.py │ ├── services │ │ ├── __init__.py │ │ ├── clingo.py │ │ ├── draco.py │ │ ├── renderer.py │ │ └── utility.py │ └── utils.py ├── tests │ ├── __init__.py │ ├── renderer │ │ ├── __init__.py │ │ └── altair │ │ │ ├── __init__.py │ │ │ ├── test_altair_renderer.py │ │ │ └── test_types.py │ ├── server │ │ ├── __init__.py │ │ ├── test_main.py │ │ ├── test_routers.py │ │ ├── test_services.py │ │ └── test_utils.py │ ├── test_asp_utils.py │ ├── test_constraints.py │ ├── test_data_utils.py │ ├── test_debug.py │ ├── test_draco.py │ ├── test_fact_utils.py │ ├── test_generate.py │ ├── test_hard.py │ ├── test_learn.py │ ├── test_programs.py │ ├── test_run.py │ ├── test_schema.py │ ├── test_soft.py │ ├── test_utils.py │ └── test_weights.py ├── types.py ├── utils.py └── weights.py ├── pyproject.toml └── uv.lock /.coveragerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmudig/draco2/HEAD/.coveragerc -------------------------------------------------------------------------------- /.devcontainer/devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmudig/draco2/HEAD/.devcontainer/devcontainer.json -------------------------------------------------------------------------------- /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmudig/draco2/HEAD/.dockerignore -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmudig/draco2/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/check-pr.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmudig/draco2/HEAD/.github/workflows/check-pr.yml -------------------------------------------------------------------------------- /.github/workflows/codeql.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmudig/draco2/HEAD/.github/workflows/codeql.yml -------------------------------------------------------------------------------- /.github/workflows/docs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmudig/draco2/HEAD/.github/workflows/docs.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmudig/draco2/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmudig/draco2/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmudig/draco2/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /.python-version: -------------------------------------------------------------------------------- 1 | 3.13.7 2 | -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmudig/draco2/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmudig/draco2/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- 1 | # Changelog 2 | 3 | 4 | -------------------------------------------------------------------------------- /CITATION.cff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmudig/draco2/HEAD/CITATION.cff -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmudig/draco2/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmudig/draco2/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmudig/draco2/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmudig/draco2/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmudig/draco2/HEAD/README.md -------------------------------------------------------------------------------- /docs/_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmudig/draco2/HEAD/docs/_config.yml -------------------------------------------------------------------------------- /docs/_toc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmudig/draco2/HEAD/docs/_toc.yml -------------------------------------------------------------------------------- /docs/api/debug.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmudig/draco2/HEAD/docs/api/debug.md -------------------------------------------------------------------------------- /docs/api/draco.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmudig/draco2/HEAD/docs/api/draco.ipynb -------------------------------------------------------------------------------- /docs/api/facts.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmudig/draco2/HEAD/docs/api/facts.ipynb -------------------------------------------------------------------------------- /docs/api/intro.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmudig/draco2/HEAD/docs/api/intro.md -------------------------------------------------------------------------------- /docs/api/programs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmudig/draco2/HEAD/docs/api/programs.md -------------------------------------------------------------------------------- /docs/api/renderer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmudig/draco2/HEAD/docs/api/renderer.md -------------------------------------------------------------------------------- /docs/api/run.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmudig/draco2/HEAD/docs/api/run.ipynb -------------------------------------------------------------------------------- /docs/api/schema.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmudig/draco2/HEAD/docs/api/schema.ipynb -------------------------------------------------------------------------------- /docs/api/server.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmudig/draco2/HEAD/docs/api/server.md -------------------------------------------------------------------------------- /docs/applications/data/example_charts.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmudig/draco2/HEAD/docs/applications/data/example_charts.toml -------------------------------------------------------------------------------- /docs/applications/data/kim2018_draco2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmudig/draco2/HEAD/docs/applications/data/kim2018_draco2.json -------------------------------------------------------------------------------- /docs/applications/data/saket2018_draco2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmudig/draco2/HEAD/docs/applications/data/saket2018_draco2.json -------------------------------------------------------------------------------- /docs/applications/debug_draco.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmudig/draco2/HEAD/docs/applications/debug_draco.ipynb -------------------------------------------------------------------------------- /docs/applications/design_space_exploration.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmudig/draco2/HEAD/docs/applications/design_space_exploration.ipynb -------------------------------------------------------------------------------- /docs/applications/draco1_vs_draco2.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmudig/draco2/HEAD/docs/applications/draco1_vs_draco2.ipynb -------------------------------------------------------------------------------- /docs/applications/draco_learn.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmudig/draco2/HEAD/docs/applications/draco_learn.ipynb -------------------------------------------------------------------------------- /docs/applications/recommendation.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmudig/draco2/HEAD/docs/applications/recommendation.ipynb -------------------------------------------------------------------------------- /docs/applications/renderer.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmudig/draco2/HEAD/docs/applications/renderer.ipynb -------------------------------------------------------------------------------- /docs/applications/server.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmudig/draco2/HEAD/docs/applications/server.md -------------------------------------------------------------------------------- /docs/bibliography.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmudig/draco2/HEAD/docs/bibliography.md -------------------------------------------------------------------------------- /docs/facts/encoding.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmudig/draco2/HEAD/docs/facts/encoding.md -------------------------------------------------------------------------------- /docs/facts/examples.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmudig/draco2/HEAD/docs/facts/examples.ipynb -------------------------------------------------------------------------------- /docs/facts/facet.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmudig/draco2/HEAD/docs/facts/facet.md -------------------------------------------------------------------------------- /docs/facts/intro.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmudig/draco2/HEAD/docs/facts/intro.md -------------------------------------------------------------------------------- /docs/facts/mark.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmudig/draco2/HEAD/docs/facts/mark.md -------------------------------------------------------------------------------- /docs/facts/scale.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmudig/draco2/HEAD/docs/facts/scale.md -------------------------------------------------------------------------------- /docs/facts/schema.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmudig/draco2/HEAD/docs/facts/schema.md -------------------------------------------------------------------------------- /docs/facts/task.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmudig/draco2/HEAD/docs/facts/task.md -------------------------------------------------------------------------------- /docs/facts/view.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmudig/draco2/HEAD/docs/facts/view.md -------------------------------------------------------------------------------- /docs/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmudig/draco2/HEAD/docs/favicon.ico -------------------------------------------------------------------------------- /docs/intro.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmudig/draco2/HEAD/docs/intro.md -------------------------------------------------------------------------------- /docs/jupyter-lite.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmudig/draco2/HEAD/docs/jupyter-lite.json -------------------------------------------------------------------------------- /docs/jupyterlite_nb_patch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmudig/draco2/HEAD/docs/jupyterlite_nb_patch.py -------------------------------------------------------------------------------- /docs/logo-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmudig/draco2/HEAD/docs/logo-dark.png -------------------------------------------------------------------------------- /docs/logo-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmudig/draco2/HEAD/docs/logo-light.png -------------------------------------------------------------------------------- /docs/references.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmudig/draco2/HEAD/docs/references.bib -------------------------------------------------------------------------------- /draco/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmudig/draco2/HEAD/draco/__init__.py -------------------------------------------------------------------------------- /draco/asp/constraints.lp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmudig/draco2/HEAD/draco/asp/constraints.lp -------------------------------------------------------------------------------- /draco/asp/define.lp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmudig/draco2/HEAD/draco/asp/define.lp -------------------------------------------------------------------------------- /draco/asp/examples/binned_histogram.lp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmudig/draco2/HEAD/draco/asp/examples/binned_histogram.lp -------------------------------------------------------------------------------- /draco/asp/examples/histogram.lp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmudig/draco2/HEAD/draco/asp/examples/histogram.lp -------------------------------------------------------------------------------- /draco/asp/examples/scatter.lp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmudig/draco2/HEAD/draco/asp/examples/scatter.lp -------------------------------------------------------------------------------- /draco/asp/generate.lp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmudig/draco2/HEAD/draco/asp/generate.lp -------------------------------------------------------------------------------- /draco/asp/hard.lp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmudig/draco2/HEAD/draco/asp/hard.lp -------------------------------------------------------------------------------- /draco/asp/helpers.lp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmudig/draco2/HEAD/draco/asp/helpers.lp -------------------------------------------------------------------------------- /draco/asp/optimize.lp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmudig/draco2/HEAD/draco/asp/optimize.lp -------------------------------------------------------------------------------- /draco/asp/soft.lp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmudig/draco2/HEAD/draco/asp/soft.lp -------------------------------------------------------------------------------- /draco/asp/weights.lp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmudig/draco2/HEAD/draco/asp/weights.lp -------------------------------------------------------------------------------- /draco/asp_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmudig/draco2/HEAD/draco/asp_utils.py -------------------------------------------------------------------------------- /draco/data_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmudig/draco2/HEAD/draco/data_utils.py -------------------------------------------------------------------------------- /draco/debug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmudig/draco2/HEAD/draco/debug.py -------------------------------------------------------------------------------- /draco/draco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmudig/draco2/HEAD/draco/draco.py -------------------------------------------------------------------------------- /draco/fact_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmudig/draco2/HEAD/draco/fact_utils.py -------------------------------------------------------------------------------- /draco/learn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmudig/draco2/HEAD/draco/learn.py -------------------------------------------------------------------------------- /draco/programs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmudig/draco2/HEAD/draco/programs.py -------------------------------------------------------------------------------- /draco/renderer/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmudig/draco2/HEAD/draco/renderer/__init__.py -------------------------------------------------------------------------------- /draco/renderer/altair/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /draco/renderer/altair/altair_renderer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmudig/draco2/HEAD/draco/renderer/altair/altair_renderer.py -------------------------------------------------------------------------------- /draco/renderer/altair/types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmudig/draco2/HEAD/draco/renderer/altair/types.py -------------------------------------------------------------------------------- /draco/renderer/base_renderer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmudig/draco2/HEAD/draco/renderer/base_renderer.py -------------------------------------------------------------------------------- /draco/renderer/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmudig/draco2/HEAD/draco/renderer/utils.py -------------------------------------------------------------------------------- /draco/run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmudig/draco2/HEAD/draco/run.py -------------------------------------------------------------------------------- /draco/schema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmudig/draco2/HEAD/draco/schema.py -------------------------------------------------------------------------------- /draco/server/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmudig/draco2/HEAD/draco/server/__init__.py -------------------------------------------------------------------------------- /draco/server/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmudig/draco2/HEAD/draco/server/__main__.py -------------------------------------------------------------------------------- /draco/server/draco_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmudig/draco2/HEAD/draco/server/draco_api.py -------------------------------------------------------------------------------- /draco/server/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmudig/draco2/HEAD/draco/server/main.py -------------------------------------------------------------------------------- /draco/server/models/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /draco/server/models/clingo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmudig/draco2/HEAD/draco/server/models/clingo.py -------------------------------------------------------------------------------- /draco/server/models/draco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmudig/draco2/HEAD/draco/server/models/draco.py -------------------------------------------------------------------------------- /draco/server/models/renderer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmudig/draco2/HEAD/draco/server/models/renderer.py -------------------------------------------------------------------------------- /draco/server/models/shared.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmudig/draco2/HEAD/draco/server/models/shared.py -------------------------------------------------------------------------------- /draco/server/models/utility.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmudig/draco2/HEAD/draco/server/models/utility.py -------------------------------------------------------------------------------- /draco/server/routers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmudig/draco2/HEAD/draco/server/routers/__init__.py -------------------------------------------------------------------------------- /draco/server/routers/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmudig/draco2/HEAD/draco/server/routers/base.py -------------------------------------------------------------------------------- /draco/server/routers/clingo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmudig/draco2/HEAD/draco/server/routers/clingo.py -------------------------------------------------------------------------------- /draco/server/routers/draco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmudig/draco2/HEAD/draco/server/routers/draco.py -------------------------------------------------------------------------------- /draco/server/routers/renderer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmudig/draco2/HEAD/draco/server/routers/renderer.py -------------------------------------------------------------------------------- /draco/server/routers/utility.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmudig/draco2/HEAD/draco/server/routers/utility.py -------------------------------------------------------------------------------- /draco/server/services/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /draco/server/services/clingo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmudig/draco2/HEAD/draco/server/services/clingo.py -------------------------------------------------------------------------------- /draco/server/services/draco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmudig/draco2/HEAD/draco/server/services/draco.py -------------------------------------------------------------------------------- /draco/server/services/renderer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmudig/draco2/HEAD/draco/server/services/renderer.py -------------------------------------------------------------------------------- /draco/server/services/utility.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmudig/draco2/HEAD/draco/server/services/utility.py -------------------------------------------------------------------------------- /draco/server/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmudig/draco2/HEAD/draco/server/utils.py -------------------------------------------------------------------------------- /draco/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /draco/tests/renderer/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /draco/tests/renderer/altair/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /draco/tests/renderer/altair/test_altair_renderer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmudig/draco2/HEAD/draco/tests/renderer/altair/test_altair_renderer.py -------------------------------------------------------------------------------- /draco/tests/renderer/altair/test_types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmudig/draco2/HEAD/draco/tests/renderer/altair/test_types.py -------------------------------------------------------------------------------- /draco/tests/server/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /draco/tests/server/test_main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmudig/draco2/HEAD/draco/tests/server/test_main.py -------------------------------------------------------------------------------- /draco/tests/server/test_routers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmudig/draco2/HEAD/draco/tests/server/test_routers.py -------------------------------------------------------------------------------- /draco/tests/server/test_services.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmudig/draco2/HEAD/draco/tests/server/test_services.py -------------------------------------------------------------------------------- /draco/tests/server/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmudig/draco2/HEAD/draco/tests/server/test_utils.py -------------------------------------------------------------------------------- /draco/tests/test_asp_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmudig/draco2/HEAD/draco/tests/test_asp_utils.py -------------------------------------------------------------------------------- /draco/tests/test_constraints.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmudig/draco2/HEAD/draco/tests/test_constraints.py -------------------------------------------------------------------------------- /draco/tests/test_data_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmudig/draco2/HEAD/draco/tests/test_data_utils.py -------------------------------------------------------------------------------- /draco/tests/test_debug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmudig/draco2/HEAD/draco/tests/test_debug.py -------------------------------------------------------------------------------- /draco/tests/test_draco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmudig/draco2/HEAD/draco/tests/test_draco.py -------------------------------------------------------------------------------- /draco/tests/test_fact_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmudig/draco2/HEAD/draco/tests/test_fact_utils.py -------------------------------------------------------------------------------- /draco/tests/test_generate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmudig/draco2/HEAD/draco/tests/test_generate.py -------------------------------------------------------------------------------- /draco/tests/test_hard.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmudig/draco2/HEAD/draco/tests/test_hard.py -------------------------------------------------------------------------------- /draco/tests/test_learn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmudig/draco2/HEAD/draco/tests/test_learn.py -------------------------------------------------------------------------------- /draco/tests/test_programs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmudig/draco2/HEAD/draco/tests/test_programs.py -------------------------------------------------------------------------------- /draco/tests/test_run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmudig/draco2/HEAD/draco/tests/test_run.py -------------------------------------------------------------------------------- /draco/tests/test_schema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmudig/draco2/HEAD/draco/tests/test_schema.py -------------------------------------------------------------------------------- /draco/tests/test_soft.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmudig/draco2/HEAD/draco/tests/test_soft.py -------------------------------------------------------------------------------- /draco/tests/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmudig/draco2/HEAD/draco/tests/test_utils.py -------------------------------------------------------------------------------- /draco/tests/test_weights.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmudig/draco2/HEAD/draco/tests/test_weights.py -------------------------------------------------------------------------------- /draco/types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmudig/draco2/HEAD/draco/types.py -------------------------------------------------------------------------------- /draco/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmudig/draco2/HEAD/draco/utils.py -------------------------------------------------------------------------------- /draco/weights.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmudig/draco2/HEAD/draco/weights.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmudig/draco2/HEAD/pyproject.toml -------------------------------------------------------------------------------- /uv.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmudig/draco2/HEAD/uv.lock --------------------------------------------------------------------------------