Git Product home page Git Product logo

Comments (2)

vinci1it2000 avatar vinci1it2000 commented on June 17, 2024

compile method

The compile method is trying to pre-calculate all intermediate results of the formula. I'll show you an example:

  >>> import formulas
  >>> builder = formulas.Parser().ast('=MYFUNC((1+2)+a)')[1]
  >>> builder.dsp.plot()

the Parser has generated a Builder with the following Dispatcher:

image

When compile the function, the Builder has generated a new Dispatcher with all pre-calculated outputs (see (1+2)).

 >>> func = builder.compile()
 >>> func.plot()

image

In this case the builder couldn't execute the MYFUNC, because it has has a variable as input. But if you execute the compiled function you will get the same error:

  >>> func(1)
  Traceback (most recent call last):
  ...
  schedula.utils.exc.DispatcherError: ("Failed DISPATCHING '%s' due to:\n  %r", 'MYFUNC', FunctionError('Function not implemented!',))

Error description

In the first case your function has not any variable, so the compile method executes the function MYFUNC raising the error.

While, in the second case, since the function has a variable as input, the compile method cannot execute the function. In any case, you will receive the same error in the first execution of the compiled function.

Detect not implemented functions

If you want to detect not implemented functions, you can do the following:

 >>> [k for k, v in builder.dsp.function_nodes.items() if v['function'] is formulas.functions.not_implemented]
['MYFUNC']

from formulas.

albertca avatar albertca commented on June 17, 2024

Thanks a lot for the explanation.

It was very helpful!

from formulas.

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.