Dependencies and Extras#
Core Install#
pip install design-research-problems
Editable contributor setup:
git clone https://github.com/cmudrc/design-research-problems.git
cd design-research-problems
python -m venv .venv
source .venv/bin/activate
python -m pip install --upgrade pip
pip install -e ".[dev]"
Or use:
make dev
Extras Matrix#
Extra |
Purpose |
|---|---|
|
Truss-oriented grammar and structural workflows |
|
Battery grammar and battery optimization workflows |
|
MCP-backed task workflows |
|
Build123d-backed CAD workflows |
|
External optimization backends beyond the base SciPy install |
|
DataFrame exports for catalog/ideation data |
|
Convenience bundle for the currently useful optional integrations |
|
Contributor tooling |
Text and decision families are suitable for lightweight setups. Grammar and battery families are more infrastructure-sensitive because they depend on domain-specific toolchains. MCP and CAD tasks are best when your study must interact with an external execution environment.
Optimization primitives ship in the base install through SciPy, so there is no
separate opt extra. Use solvers for external search backends and
all when you want the broadest packaged problem toolkit.
Recommended install profiles:
lightweight catalog and text studies: base install only
structural grammar studies:
pip install -e ".[grammar]"battery studies:
pip install -e ".[battery]"external-tool workflows:
pip install -e ".[mcp,cad]"broad optional-toolkit install:
pip install -e ".[all]"full local validation environment:
make dev-full
Release validation is exposed via make release-check.