Skip to content

issues Search Results · repo:FlorianRappl/Mages language:C#

Filter by

124 results
 (59 ms)

124 results

inFlorianRappl/Mages (press backspace or delete to remove)

When using more than 20 chars in a number its returning strange values: Examples: 100000000000000000000 // returns: 7766279631452240000 1.00000000000000000000 // returns: 0.0776627963145224 Possible ...
  • DiermenSoftware
  • Opened 
    on Jan 31
  • #134

When making calculations you can have floatingpoint errors. For example those 2 return false, but should all be true: 0.15-0.1 == 0.05 // false 0.15-0.1 = 0.05 // true 0.15-0.1 = 0.05 // false ...
  • DiermenSoftware
  • 1
  • Opened 
    on Jan 31
  • #133

For some reason pow(x,y) does y^x, for example pow(1,8) = 8 and pow(2,3) = 9. This does not seem to be expected behavior, as the docs specify it the usual way: https://github.com/FlorianRappl/Mages/blob/682b68ab49a1ae1e173d7eb06162b66947e8ad7a/doc/functions.md?plain=1#L25 ...
bug
functions
  • PesBandi
  • 1
  • Opened 
    on Jan 6
  • #132

In math it’s possible to write: 1--1 // should return 2 --1 // should return 1 Where -- becomes + I’m aware that this is also used to do this: --parameter to lower the parameter by 1 Is it possible ...
  • DiermenSoftware
  • 3
  • Opened 
    on Dec 22, 2024
  • #130

Currently this is the result of the pipe operator: function = (str1,str2,str3) = str1 + + str2 + + str3; function( 1 , 2 , 3 ); //returns: 1 2 3 1 |function( 2 , 3 ); //returns: 2 3 1 desired: ...
documentation
enhancement
language
parser
  • DiermenSoftware
  • 5
  • Opened 
    on Dec 20, 2024
  • #129

For example the input 0x11.4 results in 6.800000000000001 instead of the expected 17.25. I can imagine that implementing a fix could be quite challenging and I understand that working with non-integer ...
bug
parser
  • PesBandi
  • 3
  • Opened 
    on Dec 19, 2024
  • #128

Hi, My code is as under ee.SetStatic System.Collections.Generic.List System.Object ().WithName( List ); ee.Interpret( a = List.create(); a.add(2); a.add(3); a.add(4); ); // (2, 3, 4) ee.Interpret( a(1) ...
  • mercurial-moon
  • 3
  • Opened 
    on Oct 25, 2024
  • #127

There is a case where Mages incorrectly tokenizes a number. Some cases were fixed in #110, but not all of them. Steps to reproduce Start REPL and evaluate the following numbers: SWM 0.8409014139716477191 ...
  • josefblaha
  • Opened 
    on Sep 5, 2024
  • #125

Hi I would like to know the feasibility of creating a new function randInt() that generates a random integer. It will take an integer value as the argument and generate a random integer between 0 generated ...
enhancement
functions
  • GhostVaibhav
  • 2
  • Opened 
    on Jun 27, 2024
  • #123

The main page for Mages on github says that Mages 3.0.0 is available however both the releases on github and nuget has the version 2.0.2.
  • TomasaMuller
  • 1
  • Opened 
    on Jun 1, 2024
  • #122
Issue origami icon

Learn how you can use GitHub Issues to plan and track your work.

Save views for sprints, backlogs, teams, or releases. Rank, sort, and filter issues to suit the occasion. The possibilities are endless.Learn more about GitHub Issues
ProTip! 
Restrict your search to the title by using the in:title qualifier.
Issue origami icon

Learn how you can use GitHub Issues to plan and track your work.

Save views for sprints, backlogs, teams, or releases. Rank, sort, and filter issues to suit the occasion. The possibilities are endless.Learn more about GitHub Issues
ProTip! 
Press the
/
key to activate the search input again and adjust your query.