AlgebraicJulia / GATlab.jl

GATlab: a computer algebra system based on generalized algebraic theories (GATs)
https://algebraicjulia.github.io/GATlab.jl/
MIT License
24 stars 2 forks source link

Julia parser not associating #43

Closed olynch closed 1 year ago

olynch commented 1 year ago

The julia parser parses a * b * c as Expr(:call, :*, :a, :b, :c). This is cool, and once we have #41, then we should use this, but for now we need to reassociate this.

The current workaround is to manually associate with parentheses.

olynch commented 1 year ago

This will be resolved by #59