-
Notifications
You must be signed in to change notification settings - Fork 48
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
separate optimize from simplify (#870)
This PR limits the deep replacement of Evaluable._optimized_for_numpy1 to the operations of _optimized_for_numpy, no longer involving _simplified. This creates a logical separation between simplify and optimized and removes overlap between the two passes. The latter (.optimized) still implies the former (.simplified), but executes it strictly in a pre-processing pass, with the subsequent optimization making only local adjustments to the simplified state. The _optimized_for_numpy methods are modified to make these adjustments in a nimble fashion rather than relying on the heavy machinery of _simplified.
- Loading branch information
Showing
2 changed files
with
34 additions
and
21 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
'Numerical Utilities for Finite Element Analysis' | ||
|
||
__version__ = version = '9a26' | ||
__version__ = version = '9a27' | ||
version_name = 'jook-sing' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters