Search found 26 matches

Go to advanced search

by herr
07 Jul 2012, 14:36
Forum: Helpdesk
Topic: Documentation / tutorial for beginners?
Replies: 3
Views: 5379

Re: Documentation / tutorial for beginners?

PS In case it matters, all the polytopes I need to work with are specified as follows: - lots of 0/1 linear combination of the variables >= 1 - all variables >= 0 One way to define the inequality system for "all variables >= 0" would be: $ineqs=zero_vector(3)|unit_matrix(3); polytope > pr...
by herr
07 Jul 2012, 14:16
Forum: Helpdesk
Topic: Documentation / tutorial for beginners?
Replies: 3
Views: 5379

Re: Documentation / tutorial for beginners?

The documentation tells me what command to use: $inequalities=new Matrix<Rational>([[1,1,0],[1,0,1],[1,-1,0],[1,0,-1],[17,1,1]]); $p=new Polytope<Rational>(INEQUALITIES=>$inequalities); but I can't seem to find anywhere the semantics of this command - in other words, exactly how are inequalities co...
by herr
22 May 2012, 13:26
Forum: Helpdesk
Topic: no linefeeds - lines overwrite each other!
Replies: 2
Views: 4398

Re: no linefeeds - lines overwrite each other!

For me it works fine under Ubuntu with Mozilla Firefox and Chromium, every input/output starts in a new line. Which browser and which operating system do you use? Does the same problem occur when you try it in a different browser?
by herr
27 Mar 2012, 13:19
Forum: Helpdesk
Topic: Cones and FACETS, EQUATIONS
Replies: 2
Views: 4265

Re: Cones and FACETS, EQUATIONS

You are on the right track, but EQUATIONS is an input property (like INEQUALITIES, INPUT_RAYS, or INPUT_LINEALITY). The defining equations are stored in LINEAR_SPAN (and the defining inequalities are stored in FACETS).
by herr
26 Mar 2012, 11:02
Forum: Helpdesk
Topic: Creating a graph with edge properties
Replies: 7
Views: 9412

Re: Creating a graph with edge properties

How do I add edge properties (ints in my case) to it?
It should be possible to add properties to edges by using an EdgeMap, e.g. see polymake/apps/graph/src/edge_lengths.cc.
by herr
20 Mar 2012, 09:42
Forum: Helpdesk
Topic: colors: missing rgb.txt
Replies: 2
Views: 4805

Re: colors: missing rgb.txt

The path to rgb.txt is usually detected automatically, but it can also be specified in the file customize.pl in your .polymake folder. The variable is called $Visual::Color::RGBtxt_path. For me the following worked:

Code: Select all

$Visual::Color::RGBtxt_path='/usr/share/X11/rgb.txt';
by herr
01 Feb 2012, 15:58
Forum: Helpdesk
Topic: Concatenating matrices in 2.11 produces segfaults
Replies: 4
Views: 5844

Re: Concatenating matrices in 2.11 produces segfaults

You need an extra login and password for the jReality repository:
Login as user guest with empty password.
by herr
30 Nov 2011, 13:11
Forum: Installing polymake
Topic: Documentation related "bugs"
Replies: 4
Views: 8016

Re: Documentation related "bugs"

The help text for "save" has a little typo: "...has the true vakue."
Thanks for the hint. Now it's fixed. :)
by herr
30 Nov 2011, 13:03
Forum: Installing polymake
Topic: Documentation related "bugs"
Replies: 4
Views: 8016

Re: Documentation related "bugs"

You are right: "make docs" does not work for Release 2.10 due to some changes in the internal hierarchy. We already repaired it for the svn version. Hence, the feature will be available in the next release, which is scheduled for the end of this year. The links to the reference documentati...
by herr
17 Jun 2011, 09:53
Forum: Helpdesk
Topic: polytope compute with 'INEQUALITIES' -> lattice points
Replies: 9
Views: 12370

Re: polytope compute with 'INEQUALITIES' -> lattice points

As written in the documentation, I used the following code to produce my polytope: $inequalities=new Matrix<Rational>([...]); $p=new Polytope<Rational>(INEQUALITIES=>$inequalities); Right, this is exactly the way it should work. The problem is, that polymake tells me, that the polytope has no Verte...

Go to advanced search