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
Profiling on my use-case shows that basic_ss makes up around 30% of both the total runtime and total allocation.
Interestingly, one of the most expensive parts of building the simpset is scTypeOfGlobal, so we should probably optimize that one too.
The text was updated successfully, but these errors were encountered:
The problem is that it rebuilds the simpset from scratch (using function
basic_ss
) every time it is called, which is quite expensive.saw-script/src/SAWScript/Prover/Rewrite.hs
Lines 20 to 28 in 47aa9f3
Profiling on my use-case shows that
basic_ss
makes up around 30% of both the total runtime and total allocation.Interestingly, one of the most expensive parts of building the simpset is
scTypeOfGlobal
, so we should probably optimize that one too.The text was updated successfully, but these errors were encountered: