Skip to content
Snippets Groups Projects
  • Martin Bauer's avatar
    d5373ec8
    Fix for LB collide only step · d5373ec8
    Martin Bauer authored
    - sweep updates pdf field in place, but does not load all the values
      before overwriting them
    -> added a new transformation on AssignmentCollection that loads all
       read values first
    d5373ec8
    History
    Fix for LB collide only step
    Martin Bauer authored
    - sweep updates pdf field in place, but does not load all the values
      before overwriting them
    -> added a new transformation on AssignmentCollection that loads all
       read values first
__init__.py 815 B
from .assignment_collection import AssignmentCollection
from .simplificationstrategy import SimplificationStrategy
from .simplifications import sympy_cse, sympy_cse_on_assignment_list, \
    apply_to_all_assignments, apply_on_all_subexpressions, subexpression_substitution_in_existing_subexpressions, \
    subexpression_substitution_in_main_assignments, add_subexpressions_for_divisions, add_subexpressions_for_field_reads

__all__ = ['AssignmentCollection', 'SimplificationStrategy',
           'sympy_cse', 'sympy_cse_on_assignment_list', 'apply_to_all_assignments',
           'apply_on_all_subexpressions', 'subexpression_substitution_in_existing_subexpressions',
           'subexpression_substitution_in_main_assignments', 'add_subexpressions_for_divisions',
           'add_subexpressions_for_field_reads']