Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Fixes graphics.drawEllipse. | Dominik Picheta | 2013-07-27 | 1 | -1/+4 |
| | | | | | | It failed because a Natural cannot be negative but drawEllipse tried to set negative values to a Natural variable; this variable's type was changed to an Int. | ||||
* | Fixes #543. | Dominik Picheta | 2013-07-27 | 1 | -1/+2 |
| | | | | Changed signature of SetVideoMode so that the flags param is a uint32. | ||||
* | new vm: lots of fixes | Araq | 2013-07-27 | 3 | -52/+145 |
| | |||||
* | bugfix: system.& for sequences | Araq | 2013-07-27 | 1 | -2/+2 |
| | |||||
* | new vm: can execute simple programs | Araq | 2013-07-26 | 2 | -9/+10 |
| | |||||
* | Merge branch 'master' of github.com:Araq/Nimrod | Araq | 2013-07-25 | 1 | -1/+23 |
|\ | |||||
| * | Added macros.newIfStmt and macros.newVarStmt. | Dominik Picheta | 2013-07-25 | 1 | -1/+23 |
| | | |||||
* | | attempt to make C codegen aware of 'gensym' | Araq | 2013-07-25 | 1 | -1/+1 |
|/ | |||||
* | Merge branch 'master' of github.com:Araq/Nimrod | Araq | 2013-07-25 | 1 | -1/+1 |
|\ | |||||
| * | bugfix: gensym | Araq | 2013-07-25 | 1 | -1/+1 |
| | | |||||
* | | new vm: next steps | Araq | 2013-07-25 | 2 | -3/+10 |
| | | |||||
* | | new evaluation engine: next steps | Araq | 2013-07-25 | 3 | -12/+11 |
|/ | |||||
* | Merge branch 'master' of github.com:Araq/Nimrod | Araq | 2013-07-24 | 1 | -10/+10 |
|\ | |||||
| * | Merge pull request #527 from jbe/master | Araq | 2013-07-24 | 1 | -10/+10 |
| |\ | | | | | | | export pointer types for SDL event objects | ||||
| | * | export pointer types for SDL event objects | jbe | 2013-07-17 | 1 | -10/+10 |
| | | | |||||
* | | | fixes #531 | Araq | 2013-07-24 | 14 | -1/+663 |
| | | | |||||
* | | | fixes #544 | Araq | 2013-07-24 | 4 | -3/+21 |
|/ / | |||||
* | | added macros.genSym | Araq | 2013-07-24 | 5 | -5/+23 |
| | | |||||
* | | Merge branch 'master' of github.com:Araq/Nimrod | Araq | 2013-07-24 | 1 | -1/+1 |
|\ \ | |||||
| * | | Fixes OSError deprecation warning. | Dominik Picheta | 2013-07-21 | 1 | -1/+1 |
| | | | |||||
* | | | first steps to a new evaluation engine | Araq | 2013-07-24 | 4 | -0/+1768 |
|/ / | |||||
* | | Merge branch 'master' of github.com:Araq/Nimrod | Araq | 2013-07-20 | 30 | -493/+893 |
|\ \ | |||||
| * | | Rebuilt C Sources. | Dominik Picheta | 2013-07-18 | 0 | -0/+0 |
| | | | |||||
| * | | Fixed libzip path for Arch Linux. | Dominik Picheta | 2013-07-17 | 1 | -1/+1 |
| | | | |||||
| * | | Rebuilt csources. | Dominik Picheta | 2013-07-17 | 2 | -400/+0 |
| |/ | |||||
| * | Merge pull request #524 from gradha/pr_misc_docs | Simon Hafner | 2013-07-15 | 3 | -12/+62 |
| |\ | | | | | | | Miscellaneous doc tweaks | ||||
| | * | Documents copyFile not copying attributes on posix. | Grzegorz Adam Hankiewicz | 2013-07-16 | 1 | -2/+7 |
| | | | |||||
| | * | Warns to not modify string findAll is iterating over. | Grzegorz Adam Hankiewicz | 2013-07-16 | 1 | -1/+4 |
| | | | |||||
| | * | Explains parseHex initialization quirk. | Grzegorz Adam Hankiewicz | 2013-07-16 | 1 | -2/+26 |
| | | | |||||
| | * | Adds some examples to JoinPath and / procs. | Grzegorz Adam Hankiewicz | 2013-07-16 | 1 | -7/+25 |
| |/ | |||||
| * | Merge pull request #519 from gradha/pr_guards_against_nil_ast | Araq | 2013-07-09 | 1 | -1/+2 |
| |\ | | | | | | | Avoids usefulFact recursion with nil parameter. Fixes #518. | ||||
| | * | Avoids usefulFact recursion with nil parameter. Fixes #518. | Grzegorz Adam Hankiewicz | 2013-07-09 | 1 | -1/+2 |
| |/ | |||||
| * | Merge pull request #504 from ventor3000/master | Araq | 2013-07-07 | 2 | -0/+450 |
| |\ | | | | | | | modules poly and numeric added | ||||
| | * | Fixed some minor stuff in module poly | Robert Persson | 2013-07-07 | 1 | -15/+9 |
| | | | | | | | | | | | | | | | Removed the stupid initPolyFromDegree which only served ro re-allocate results. Also fixed some minor stuff with nil return values in roots. | ||||
| | * | Optimized integrate function in module poly | Robert Persson | 2013-07-07 | 1 | -10/+16 |
| | | | | | | | | | | | | | | | Rewrote the integrate function since the old one was quite hacky. The new one is about 7 times faster in release and 3 times faster in debug | ||||
| | * | Optimized divMod in poly | Robert Persson | 2013-07-03 | 1 | -13/+11 |
| | | | | | | | | | | | | | | | Made a huge speed improvement in debug mode. Only a few % in release, but the memory load should be somewhat lower. | ||||
| | * | Fixed a mixed bag of stuff poly and numeric | Robert Persson | 2013-07-03 | 2 | -51/+42 |
| | | | |||||
| | * | Cleanup of poly an numeric modules | Robert Persson | 2013-07-02 | 2 | -63/+0 |
| | | | | | | | | | | | | Removed some test code | ||||
| | * | Added poly and numeric modules | Robert Persson | 2013-07-02 | 2 | -0/+524 |
| | | | |||||
| * | | Merge pull request #515 from gradha/pr_idetools_improvements | Araq | 2013-07-07 | 6 | -51/+234 |
| |\ \ | | | | | | | | | Idetools improvements | ||||
| | * | | Adds idetools failure case for re"" being reported as a module. | Grzegorz Adam Hankiewicz | 2013-07-06 | 2 | -1/+7 |
| | | | | |||||
| | * | | Documents idetools skMacro with failure test case. | Grzegorz Adam Hankiewicz | 2013-07-06 | 3 | -1/+53 |
| | | | | |||||
| | * | | Documents idetools skLabel with failure test case. | Grzegorz Adam Hankiewicz | 2013-07-06 | 3 | -0/+34 |
| | | | | |||||
| | * | | Moves caasdriver comments into idetools document. | Grzegorz Adam Hankiewicz | 2013-07-06 | 2 | -41/+96 |
| | | | | |||||
| | * | | Mentions expected order of idetools suggest results. | Grzegorz Adam Hankiewicz | 2013-07-06 | 1 | -1/+3 |
| | | | | |||||
| | * | | Adds caas and idetools keywords to The One And Only Great Index. | Grzegorz Adam Hankiewicz | 2013-07-06 | 1 | -8/+8 |
| | | | | |||||
| | * | | Forces removal of nimcache dir for all caas runs. | Grzegorz Adam Hankiewicz | 2013-07-06 | 1 | -0/+2 |
| | | | | | | | | | | | | | | | | | | | | Now some test cases fail because they can't use a previous nimcache directory (which potentially could have wrong compiled code anyway). | ||||
| | * | | Adds more idetools suggest failure cases. | Grzegorz Adam Hankiewicz | 2013-07-06 | 2 | -0/+32 |
| | | | | |||||
| * | | | Merge pull request #514 from exhu/fix_csource_tmpl | Araq | 2013-07-07 | 2 | -4/+4 |
| |\ \ \ | | | | | | | | | | | Fix for Issue #510 : Moved linker flags to the end of cmd line in build.sh and bat templates | ||||
| | * | | | Moved linker flags to the end of cmd line in build.sh and bat templates | Yury Benesh | 2013-07-06 | 2 | -4/+4 |
| | | | | |