Git Product home page Git Product logo

Comments (6)

vanniktech avatar vanniktech commented on July 24, 2024 1

Oh yes. It does indeed work. Sorry for the noise. And thanks for catching the implementation error :)

from expression.

nicklockwood avatar nicklockwood commented on July 24, 2024

This works for me. It seems like you were originally trying with infix (which wouldn't have worked), but postfix should (and does, when I tried it).

from expression.

nicklockwood avatar nicklockwood commented on July 24, 2024

(Also, it's not related to the question, but your implementation of fact() will never terminate if you give it a negative number)

from expression.

vanniktech avatar vanniktech commented on July 24, 2024

However it seems like plus operators afterwards aren't tolerated after a postfix:

let expression = Expression(
    optimized,
    constants: [
        "π": Double.pi,
        "ℇ": Darwin.M_E,
    ],
    symbols: [
        .function("log10", arity: 1): { log10($0[0]) },
        .infix("()"): { $0[0] * $0[1] },
        .infix("^"): { pow($0[0], $0[1]) },
        .postfix("!"): { Double(fact(Int($0[0]))) },
        .postfix("π"): { $0[0] * Double.pi },
        .postfix("ℇ"): { $0[0] * Darwin.M_E },
        .prefix("√"): { sqrt($0[0]) },
    ]
)

9!+1 should yield 362881 but it throws an error: Expression.Expression.Error error 3.

from expression.

nicklockwood avatar nicklockwood commented on July 24, 2024

This is a limitation of the parser. Because it supports arbitrary operators it can't tell that !+ isn't meant to be an infix operator in its own right.

I'll see if there's a way to make it more flexible, but in the meantime adding spaces should solve it:

9! + 1

from expression.

vanniktech avatar vanniktech commented on July 24, 2024

Yes adding spaces does the trick.

from expression.

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.