v0.3.0
Major Changes:
-
Implemented Python interface for all existing functions allowing one to use nimplex as a native Python binary. Simply:
-
Start by compiling it on your machine
nim c --app:lib --out:nimplex.so --d:release --threads:on --passC:-flto --passc:-ffast-math --passL:-flto nimplex -
Then, copy the
nimplex.soto your Python's code working directory and import just like another Python packageimport nimplex -
And you are ready! All function names follow
*_pypattern relative to the nim ones, e.g.,nimplex.simplex_grid_fractional_py(dimension, num_points)
-
Full Changelog: v0.2.1...v0.3.0