-
Fuzzy Search only on Savitri Text
-
see https://github.com/Pulsar4xDevs/Pulsar4x/issues/65
Currently (Alpha4) we're using a bunch of lists for the Component Abilities.
It'd be better if we could put some script in the json file (ie all…
-
`max(3.0, 2.0, 1.0)` returns `2.0`. The expected answer would be 3.0.
`min(1.0, 2.0, 3.0)` returns `2.0`. The expected answer would be 1.0.
Currently max expects two arguments. If more arguments are …
-
Hi dear
I want to evaluate a function like this: myFunction(23A12B,H341B1), but the parser didn't recongize the whole 23A12B as a parameter!
how do i can do this?
-
Hey guys,
I'm looking at doing this two ways. Apparently the eval() function in javascript is a potential security risk, so I figured if that's a problem I can use the shunting yard algorithm instead…
-
Does anyone have an android 4.1 or 4.2 calc polyfill that works with this grid?
I have tried those two:
https://github.com/Eccenux/PolyCalc
https://github.com/closingtag/calc-polyfill
but none of them…
-
Maybe I missed this, but I don't see a way to solve for a variable. Is there a way to do that? I'd like to be able to do something like this:
```
double x = new ExpressionBuilder("(4*x)+2=2*(x+6)").b…
-
Parse expressions like:
```
int x = (5 + 5) - (a / b);
```
No idea what I was thinking when last night when I implemented the shunting yard algorithm and a stack for Expressions!? :-1:
-
@plausibility, @ackwell and @cyphar just love my regexps, don't you guys?
probably should implement https://en.wikipedia.org/wiki/Operator-precedence_parser or something
wait, how do I even function…
-