Flint2 0.1.0.2 → 0.1.0.3
raw patch · 4 files changed
+18/−3 lines, 4 filesPVP ok
version bump matches the API change (PVP)
API changes (from Hackage documentation)
Files
- Flint2.cabal +2/−1
- README.md +1/−1
- csrc/ca_ext.h +13/−0
- package.yaml +2/−1
Flint2.cabal view
@@ -5,7 +5,7 @@ -- see: https://github.com/sol/hpack name: Flint2-version: 0.1.0.2+version: 0.1.0.3 synopsis: Haskell bindings for the flint library for number theory description: A Haskell Wrapper for Flint This library provides access to the functionality of the FLINT.@@ -343,6 +343,7 @@ arb_poly.h arf.h bool_mat.h+ ca_ext.h d_mat.h dirichlet.h double_interval.h
README.md view
@@ -1,4 +1,4 @@-+ # Flint2 **Flint2** provides a thin Haskell wrapper for [Flint](https://flintlib.org) C-library.
+ csrc/ca_ext.h view
@@ -0,0 +1,13 @@+#ifndef CA_EXT_H_+#define CA_EXT_H_++#include <flint/flint.h>++#include <flint/ca.h>+#include <flint/ca_ext.h>++void ca_ext_fprint(FILE *out, const ca_ext_t x, ca_ctx_t ctx);++char * ca_ext_get_str(const ca_ext_t x, ca_ctx_t ctx);++#endif // CA_EXT_H_
package.yaml view
@@ -1,5 +1,5 @@ name: Flint2-version: 0.1.0.2+version: 0.1.0.3 github: "monien/Flint2" license: GPL-2 author: "Hartmut Monien"@@ -386,6 +386,7 @@ - arb_poly.h - arf.h - bool_mat.h+ - ca_ext.h - d_mat.h - dirichlet.h - double_interval.h