-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathREADME.txt
executable file
·53 lines (37 loc) · 1.36 KB
/
README.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
====================
CvxAlgGeo
====================
This package consists of several modules and each module designated to
perform a specific type of computation that frequently appears in real
algebraic geometry and polynomial optimization.
One can include these modules like this::
#!/usr/bin/env python
from CvxAlgGeo import *
OR
from CvxAlgGeo import semidefinite, geometric, invariant
Installation
====================
In Sage -sh mode, simply run
python setup.py install
Dependencies
====================
The 'semidefinite' module, depends on 'SDP' package for semidefinite
programming computations. 'SDP' itself requires either 'CvxOpt' or
'cpycsdp' to be installed on Sage.
semidefinite
====================
This module implements semidefinite relaxation method for polynomial
optimization, introduced by J.B. Lasserre. This module aims to provide
functionalities that are available for Matlab through 'sostools' or
'GloptiPoly'.
geometric
====================
'geometric' module provides a fast method to approximate a lower bound
for a given polynomial over a given basic closed semialgebraic set using
geometric programming.
invariant
====================
This module provides some experimental computations related to invariant
polynomials.
The latest version of this code is available at:
<https://github.com/mghasemi/pycsdp.git>