Published November 1, 2016
| Version v0.6
Software
Open
bluescarni/piranha: piranha-0.6
Authors/Creators
- 1. University of Moratuwa
- 2. IIT Bombay
- 3. Los Alamos National Laboratory
Description
This release introduces a new serialization API which is incompatible with earlier versions of piranha.
Data saved with earlier piranha versions can be ported to the new API as follows:
- check out the
s11n_legacybranch: https://github.com/bluescarni/piranha/tree/s11n_legacy - configure and install piranha with msgpack support
- load the old data with the old API, save it with the new API using the msgpack format. E.g., from python:
pt = polynomial(rational,monomial(rational))()
foo = pt.load('myfile.bz2',pyranha.file_compression.bzip2)
pyranha.save_file(foo,'newfile.mpackp.bz2')
This will save the foo polynomial, loaded via the old API, to the file newfile.mpack.bz2 using the compressed msgpack portable format.
Files
bluescarni/piranha-v0.6.zip
Files
(1.1 MB)
| Name | Size | Download all |
|---|---|---|
|
md5:159ee8a4892e1e60fc17caa9595499b5
|
1.1 MB | Preview Download |
Additional details
Related works
- Is supplement to
- https://github.com/bluescarni/piranha/tree/v0.6 (URL)