Home Online Manual
Top
Back: rays
Forward: semigroupGenerator
FastBack:
FastForward:
Up: gfan_lib
Top: Singular Manual
Contents: Table of Contents
Index: Index
About: About this document

D.13.1.37 relativeInteriorPoint

Procedure from library gfan.lib (see gfan_lib).

Usage:
relativeInteriorPoint(c); c cone

Return:
bigintmat, a point in the relative interior of c

Note:
not unique, unless c is in its canonical form

Example:
 
LIB "gfan.lib";
intmat M1[2][2]=
1,0,
0,1;
cone c1=coneViaPoints(M1);
relativeInteriorPoint(c1);
==> 1,1
intmat M2[2][2]=
1,0,
1,1;
cone c2=coneViaPoints(M2);
relativeInteriorPoint(c2);
==> 2,1