Coder Social home page Coder Social logo

Bug in ManyToOneReplacer about matchpy HOT 3 CLOSED

hpac avatar hpac commented on June 14, 2024
Bug in ManyToOneReplacer

from matchpy.

Comments (3)

arihantparsoya avatar arihantparsoya commented on June 14, 2024

Here is my Constraint class (cons()):

from matchpy import Constraint, substitute
from sympy import sympify

class cons(Constraint):
    def __init__(self, expr, vars):
        self.expr = expr
        self.vars = frozenset(v.name for v in vars)

    def __call__(self, substitution):
        sub = substitute(self.expr, substitution)
        try:
            return sympify(str(sub))
        except:
            print(('Unable to sympify: {}').format(sub))
            return False

    @property
    def variables(self):
        return self.vars

    def with_renamed_vars(self, renaming):
        copy = cons(self.expr, [])
        copy.vars = frozenset(renaming.get(v, v) for v in self.vars)
        return copy

    def __eq__(self, other):
        return isinstance(other, cons) and other.vars == self.vars and other.expr == self.expr

    def __hash__(self):
        return hash((self.vars, self.expr))

I figured out that self.vars are getting changed in with_renamed_vars from frozenset({'m', 'x'}) to frozenset({'i1', 'i2'}) and stays the same when __call__ is called.

from matchpy.

wheerd avatar wheerd commented on June 14, 2024

You will have to rename the variables in the expression as well:

    def with_renamed_vars(self, renaming):
        new_expr = self.expr.with_renamed_vars(renaming)
        new_vars = [renaming.get(v, v) for v in self.vars]
        return cons(new_expr, new_vars)

Unfortunately, this will only work if the expression consists of Expression instances, i.e. no ints etc. I want to get rid of the requirement for renaming. I hope I can get to that next week, but I can't promise it.

from matchpy.

arihantparsoya avatar arihantparsoya commented on June 14, 2024

Thanks!

from matchpy.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.