You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Rather than implementing OM itself in Rust (something akin to Dimensional in Haskell), a simpler (but much less performant) option may be to embed an RDF reasoner that leverages the OM RDF ontology directly.
this allows us to write
----
(lam [x y] y)
(f x y)
(let ([x 1]
[y 2])
y)
----
these desugar into multiple applications of the singular Expr
constructors. since we support currying this works nicely.
embedding an RDF reasoner into rep_lang seems out of scope for now, and I think we will remember to check this issue if/when we come up against something which necessitates that.
Rather than implementing OM itself in Rust (something akin to Dimensional in Haskell), a simpler (but much less performant) option may be to embed an RDF reasoner that leverages the OM RDF ontology directly.
See https://github.com/HajoRijgersberg/OM#libs for some implementations of OM unit conversions in other languages.
The text was updated successfully, but these errors were encountered: