-
Notifications
You must be signed in to change notification settings - Fork 52
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
precompilation error for changes made to EOSmodel.jl #307
Comments
ohhh, good one! |
Note sure why but its only fixed with: function eos(model::EoSModel, V, T, z = SA[1.0])
return Rgas(model)*sum(z)*T*a_eos(model,V,T,z) + reference_state_eval(model,V,T,z)
end |
Yes sorry, I thought I had fixed this. It does run clean with only Clapeyron but as soon as you add another package that using Symbolics it tries to precompile Clapeyron → ClapeyronSymbolicsExt and fails. However, things seem to work its just irritating to not have a clean output. |
yeah, it is bothering me too, but i can't getting it fixed, any help is really appreciated |
i opened an issue in the Symbolics.jl repository (JuliaSymbolics/Symbolics.jl#1358), along with a MWE. (cc @Sush1090 ) |
Clapeyron will note cleanly precompile:
To solve the problem replace with commented code with the one below in EoSmodel.jl
The text was updated successfully, but these errors were encountered: