Skip to content

Releases: asc-community/AngouriMath

v1.4.0

Choose a tag to compare

@Happypig375 Happypig375 released this 22 Jan 16:20
fbfb4db

What's Changed

New Contributors

Read more

v1.4.0-preview.7

v1.4.0-preview.7 Pre-release
Pre-release

Choose a tag to compare

@Happypig375 Happypig375 released this 16 Jan 19:22
b44972d

What's Changed

  • Parenthesize LaTeX limit target for one-sided limits, parenthesize Provided by Priority by @Happypig375 in #651
  • Do not simplify x in {1} to false, InnerEval merge with InnerSimplify, simplify 0/0 to NaN in InnerSimplify by @Happypig375 in #652
  • Display not equals in Latexise, simplify Notf(Andf) and Notf(Orf) by @Happypig375 in #653
  • Fix stack overflow for nonexistent two-sided limits by @Happypig375 in #654
  • Change AngouriMath.Experimental to AngouriMath.Terminal MyGet on README by @Happypig375 in #655
  • Place calculus operator priority between addition/subtraction and mutiplication/division in Latexise by @Happypig375 in #656

Full Changelog: v1.4.0-preview.6...v1.4.0-preview.7

v1.4.0-preview.6

v1.4.0-preview.6 Pre-release
Pre-release

Choose a tag to compare

@Happypig375 Happypig375 released this 08 Jan 19:42
2d2060a

What's Changed

  • Keep domains on simplify ("x/x" becomes "1 provided not x = 0"), fix 0/0 = 0 (now becomes undefined), fixed arcotanh and gamma definitions by @Happypig375 in #650

Full Changelog: v1.4.0-preview.5...v1.4.0-preview.6

v1.4.0-preview.5

v1.4.0-preview.5 Pre-release
Pre-release

Choose a tag to compare

@Happypig375 Happypig375 released this 06 Jan 14:48
bed23b3

What's Changed

  • Add AngouriMath.Terminal to NuGet publishing workflow and use ProjectReference for internal dependencies by @Copilot in #647
  • Deprecated -> No longer actively maintained by @Happypig375 in #649
  • LaTeX chained comparison fix by @Happypig375 in #648

Full Changelog: v1.4-preview.4...v1.4.0-preview.5

v1.4.0-preview.4

v1.4.0-preview.4 Pre-release
Pre-release

Choose a tag to compare

@Happypig375 Happypig375 released this 03 Jan 16:48
4fc6fda

What's Changed

New Contributors

Full Changelog: v1.4-preview.3...v1.4-preview.4

1.4.0-preview.3

1.4.0-preview.3 Pre-release
Pre-release

Choose a tag to compare

@WhiteBlackGoose WhiteBlackGoose released this 05 Jul 15:55
43fbfb2
Tan bug fixed (#570)

So basically, before that `tan` checked if the angle is divided
by `pi / 2`. If yes, it should be zero.

But it misses a condition: it also should not be integer. Basically,
whenever you get `pi / 2` as a modulo of dividing the angle by
`pi`, then `tan` turns into NaN. Whereas it just checked dividing
by `pi / 2` and did not care about case when `angle` is `pi` or
any integer by `pi`.

Issue #568

20 Beta releasing

20 Beta releasing Pre-release
Pre-release

Choose a tag to compare

@WhiteBlackGoose WhiteBlackGoose released this 23 Apr 18:41

Added Tensor, system of equations, polynom divisions, periodic roots for solvers, compilation boosted, simplification improved, LaTeX formatting improved, cache for compiled functions added, search boosted, tons of bugs fixed

1.0.17-Beta

1.0.17-Beta Pre-release
Pre-release

Choose a tag to compare

@WhiteBlackGoose WhiteBlackGoose released this 05 Jan 15:07

New syntax for FromString & Simplification improved & Bugs fixed & Compilated function's performance improved (in some cases even surpassing built-in functions)

1.0.16-Beta

1.0.16-Beta Pre-release
Pre-release

Choose a tag to compare

@WhiteBlackGoose WhiteBlackGoose released this 31 Dec 10:53

New functions: Arcsin, Arccos, Arctan, Arccotan
New hard-coded functions: Tan, Cotan
New parser: From Linq expressions
Compiled functions optimized, bugs fixed

1.0.15

Choose a tag to compare

@WhiteBlackGoose WhiteBlackGoose released this 25 Dec 19:12

New Entity method: .Compile, allows to compile functions so they could work up to 15x faster than .Substitute(x, 3).Eval().