conda activate -n geo python=3.11.5 conda activate geo
- install
bash install.sh
- test
bash t1.sh
alphageometry : Run DD+AR or AlphaGeometry solver.
dd: Implements Deductive Database (DD).
ddar: Implements the combination DD+AR.
geometry : Implements geometric objects used in the graph representation
graph : Implements the graph representation of the proof state.
numericals : Numerical representation of geometry."
pretty : tilities for string manipulation in the DSL."""
problem : Implements objects to represent problems, theorems, proofs, traceback."""
alphageometry :运行DD+AR或 AlphaGeometry 求解器。
dd:实现演绎数据库(DD)。
ddar:实现DD+AR的组合。
geometry:实现用于图形表示的几何对象。
graph:实现证明状态的图形表示。
numericals:几何的数值表示。
pretty: 在DSL中用于字符串处理的工具。
problem:实现代表问题、定理、证明和回溯的对象。
graph TD
alphageometry -->ddar
ddar-->dd
dd --> geometry
dd --> graph1
graph1-->ar
ar --> geometry
ar --> problem
problem--> geometry
problem--> pretty
graph1-->geometry
graph1-->graph_utils
graph_utils-->geometry
graph1-->numericals
numericals -->geometry
graph1-->problem
dd --> graph_utils
dd --> numericals
dd --> problem
ddar-->graph1
ddar-->problem
alphageometry -->graph1
alphageometry -->pretty
alphageometry -->problem