packages feed

pandoc-symreg 0.1.0.0 → 0.1.0.1

raw patch · 3 files changed

+22/−13 lines, 3 filesdep ~basedep ~srtreePVP ok

version bump matches the API change (PVP)

Dependency ranges changed: base, srtree

API changes (from Hackage documentation)

Files

CHANGELOG.md view
@@ -11,6 +11,12 @@ - Simplification with Equality Saturation - Added CI tests +## 0.1.0.1 - 2023-01-13++### Changed++- Updated the bounds for `base` to work with stackage nightly+ ## 0.1.0.0 - 2023-01-13  ### Added
README.md view
@@ -40,24 +40,27 @@  ```bash Usage: pandoc-symreg (-f|--from ['tir'|'hl'|'operon'|'bingo'])-                     (-t|--to ['python'|'math'|'tikz']) [-i|--input INPUT] -                     [-o|--output OUTPUT] [-v|--varnames VARNAMES]+                     (-t|--to ['python'|'math'|'tikz'|'latex']) +                     [-i|--input INPUT] [-o|--output OUTPUT] +                     [-v|--varnames VARNAMES] [-p|--parameters] -  Convert different symbolic expressions format to common formats()().+  Convert different symbolic expressions format to common formats.  Available options:   -f,--from ['tir'|'hl'|'operon'|'bingo']                            Input expression format-  -t,--to ['python'|'math'|'tikz']+  -t,--to ['python'|'math'|'tikz'|'latex']                            Output expression format   -i,--input INPUT         Input file containing expressions. Empty string gets                            expression from stdin. (default: "")   -o,--output OUTPUT       Output file to store expressions. Empty string prints                            expressions to stdout. (default: "")   -v,--varnames VARNAMES   Comma separated list of variables names. Empty list-                           assumes the default of each algorithm (e.g, "x,y,epsilon").-                           (default: "")+                           assumes the default of each algorithm (e.g,+                           "x,y,epsilon"). (default: "")+  -p,--parameters          Convert floating point numbers to free parameters.   -h,--help                Show this help text+ ```  ## Contributing
pandoc-symreg.cabal view
@@ -5,7 +5,7 @@ -- see: https://github.com/sol/hpack  name:           pandoc-symreg-version:        0.1.0.0+version:        0.1.0.1 synopsis:       A tool to convert symbolic regression expressions into different formats. description:    A pandoc-like cli tool and library to convert symbolic regression expressions to convenient formats category:       Text, Math@@ -37,11 +37,11 @@   build-depends:       attoparsec ==0.14.*     , attoparsec-expr ==0.1.*-    , base ==4.16.*+    , base >=4.16 && <4.18     , bytestring ==0.11.*     , mtl ==2.2.*     , optparse-applicative ==0.17.*-    , srtree ==0.1.2.*+    , srtree >=0.1.2.1 && <0.1.3   default-language: Haskell2010  executable pandoc-symreg@@ -54,12 +54,12 @@   build-depends:       attoparsec ==0.14.*     , attoparsec-expr ==0.1.*-    , base ==4.16.*+    , base >=4.16 && <4.18     , bytestring ==0.11.*     , mtl ==2.2.*     , optparse-applicative ==0.17.*     , pandoc-symreg-    , srtree ==0.1.2.*+    , srtree >=0.1.2.1 && <0.1.3   default-language: Haskell2010  test-suite pandoc-symreg-test@@ -73,10 +73,10 @@   build-depends:       attoparsec ==0.14.*     , attoparsec-expr ==0.1.*-    , base ==4.16.*+    , base >=4.16 && <4.18     , bytestring ==0.11.*     , mtl ==2.2.*     , optparse-applicative ==0.17.*     , pandoc-symreg-    , srtree ==0.1.2.*+    , srtree >=0.1.2.1 && <0.1.3   default-language: Haskell2010