Age | Commit message (Collapse) | Author | |
---|---|---|---|
2018-03-30 | Only depend on installed sources | Dominic Steinitz | |
2018-03-29 | base:Internal.Numeric.ComplexOf: turn from type function to type synonym | Henning Thielemann | |
Now it is obvious for GHC that (ComplexOf a) is always a Complex type. | |||
2018-03-29 | improve test failures description | Kamil Dworakowski | |
2018-03-29 | Use more meaningful names | Dominic Steinitz | |
2018-03-29 | Remove debug info | Dominic Steinitz | |
2018-03-29 | Make tolerances parameters | Dominic Steinitz | |
2018-03-28 | Make more methods available | Dominic Steinitz | |
2018-03-28 | Remove unnecessary white space | Dominic Steinitz | |
2018-03-28 | Using hsc, semi-auto-generating documentation | Dominic Steinitz | |
2018-03-26 | Revert "Cleanups to Sundials PR" | idontgetoutmuch | |
2018-03-26 | Update LICENSE | idontgetoutmuch | |
2018-03-25 | Remove -Wall from source files. | Mathieu Boespflug | |
This should be turned on a side effect of passing --pedantic to the build tool. If that flag is not passed, then avoid creating extra noise for downstream users that are building the library. | |||
2018-03-25 | Unify the stack.yaml files at top-level. | Mathieu Boespflug | |
2018-03-25 | Add nix section to stack.yaml to provision system libraries. | Mathieu Boespflug | |
2018-03-25 | Add missing extra-deps declaration. | Mathieu Boespflug | |
2018-03-25 | Remove extraneous whitespace. | Mathieu Boespflug | |
2018-03-25 | Make library --pedantic compliant. | Mathieu Boespflug | |
2018-03-25 | Make example --pedantic compliant. | Mathieu Boespflug | |
2018-03-25 | Missing lens dependency in binary. | Mathieu Boespflug | |
2018-03-25 | Fix homepage metadata. | Mathieu Boespflug | |
2018-03-25 | Remove stack new boilerplate. | Mathieu Boespflug | |
2018-03-25 | Set proper copyright. | Mathieu Boespflug | |
2018-03-22 | With a specific implicit RK method | Dominic Steinitz | |
2018-03-21 | Also return diagnostics | Dominic Steinitz | |
2018-03-21 | Delete the copy of the inline-c example | Dominic Steinitz | |
2018-03-21 | Return the entire results matrix (as a vector) | Dominic Steinitz | |
2018-03-21 | A library function + move towards the original hmatrix interface | Dominic Steinitz | |
2018-03-20 | The start of a library | Dominic Steinitz | |
2018-03-20 | Handle arbitrary systems | Dominic Steinitz | |
2018-03-19 | Fix naming | Dominic Steinitz | |
2018-03-19 | Remove redundant imports | Dominic Steinitz | |
2018-03-19 | Even more simplification | Dominic Steinitz | |
2018-03-19 | More removal of the Fortran way | Dominic Steinitz | |
2018-03-19 | A working example | Dominic Steinitz | |
2018-03-18 | Check we are passed the correct values | Dominic Steinitz | |
2018-03-17 | Start of the correct (non_Fortran) way | Dominic Steinitz | |
2018-03-15 | Build instructions | Dominic Steinitz | |
2018-03-15 | Now calling a part of the Haskell ODE | Dominic Steinitz | |
2018-03-15 | Start of copy of Fortran interface | Dominic Steinitz | |
2018-03-15 | Do not handle Jacobians yet and tidy | Dominic Steinitz | |
2018-03-14 | Now as a function | Dominic Steinitz | |
2018-03-14 | The full almost entirely C example tidied | Dominic Steinitz | |
2018-03-13 | Almost all the C example | Dominic Steinitz | |
2018-03-12 | Now builds with stack and cabal | Dominic Steinitz | |
2018-03-12 | With a .cabal | Dominic Steinitz | |
2018-03-11 | The start of an hmatrix interface to sundials | Dominic Steinitz | |
2018-02-07 | GSL.ODE: free the jacobian after use | regnat | |
When calling the function `Numeric.GSL.ODE.odeSolveVWith'` and provide a jacobian, a pointer to this jacobian is registered (at https://github.com/albertoruiz/hmatrix/blob/8cb879a4ad83656bc70652957a08113e2b784886/packages/gsl/src/Numeric/GSL/ODE.hs#L146-L148), but never freed, which causes a memory leak. This commits adds a call to `freeHaskellFunPtr` when needed at the end of the function to fix this. | |||
2018-01-18 | bump version and thanks | Alberto Ruiz | |
2017-12-25 | Workaround for GHC-8.4.x | Hiromi ISHII | |
* Adds missing Semigroup instances * Adds `semigroups` to the deps of `hmatrix` * Hides conflicting names from import list with base >= 4.11 * `(Prelude.<>)` and `GHC.TypeNats.Mod` | |||
2017-09-30 | fix bug in static dot product | Alberto Ruiz | |