Skip to content

4.3.2

Compare
Choose a tag to compare
@mkoeppe mkoeppe released this 17 Aug 00:20
· 113862 commits to develop since this release

Release Tour

Sage 4.3.2 was released on Feb 6, 2010 (changelog), 126 tickets (PRs) merged, 41 contributors.

Major features

  • much improved interface to Singular which makes using any Singular function much more efficient and easy (cf. Libraries section below)

Libraries

  • much improved interface to Singular which makes using any Singular function much more efficient and easy #7939
sage: P.<x,y,z> = QQ[];
sage: A = Matrix(ZZ,[[1,1,0],[0,1,1]])
sage: toric_ideal = sage.libs.singular.ff.toric__lib.toric_ideal # we load the function
sage: toric_ideal(A,"du") # the integer matrix does not tell us which ring we want
Traceback (most recent call last)
...
ValueError: Could not detect ring.

sage: toric_ideal(A,"du",ring=P) # so we try again
[x*z - y]

Geometry

  • a major refactoring of the Polyhedron class fixed many bugs, added new functionality, and created a cleaner structure that should make future improvements much easier.

Full Changelog: 4.3.1...4.3.2