syngular

An Object-Oriented Python Interface to Singular


Keywords
syngular, singular, algebraic, geometry
License
GPL-3.0
Install
pip install syngular==0.1.2

Documentation

An Object-Oriented Python Interface to Singular

Continuous Integration Status Coverage PyPI Downloads Binder

Requirements

numpy, sympy, mutableint, Singular

Installation

pip install -e path/to/repo

Testing

pytest --cov syngular/ --cov-report html tests/ --verbose

Quick Start

from syngular import Ideal, Ring
I = Ideal(Ring('0', ('x1', 'x2'), 'dp'), ['x1*x2'])