CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutSign UpSign In

Real-time collaboration for Jupyter Notebooks, Linux Terminals, LaTeX, VS Code, R IDE, and more,
all in one place.

| Download

GAP 4.8.9 installation with standard packages -- copy to your CoCalc project to get it

Views: 418346
1
#include "loadgap.h"
2
#include "polymake_data.h"
3
4
#include <polymake/Main.h>
5
#include <polymake/Matrix.h>
6
#include <polymake/Rational.h>
7
#include <polymake/IncidenceMatrix.h>
8
#include <polymake/Array.h>
9
#include <polymake/Set.h>
10
11
#include <iostream>
12
#include <map>
13
#include <utility>
14
15
using std::cerr;
16
using std::endl;
17
using std::string;
18
using std::map;
19
using std::pair;
20
21
22
Obj REAL_FAN_BY_CONES_SAVE( Polymake_Data*, Obj );
23
24
25
Obj REAL_FAN_BY_CONES( Polymake_Data*, Obj );
26
27
28
Obj REAL_FAN_BY_RAYS_AND_CONES( Polymake_Data*, Obj, Obj );
29
30
31
Obj REAL_RAYS_IN_MAXCONES_OF_FAN( Polymake_Data*, Obj );
32
33
34
Obj REAL_NORMALFAN_OF_POLYTOPE( Polymake_Data*, Obj );
35
36
37
Obj REAL_RAYS_OF_FAN( Polymake_Data*, Obj );
38
39
40
Obj REAL_FAN_BY_RAYS_AND_CONES_UNSAVE( Polymake_Data*, Obj, Obj );
41
42
43
Obj REAL_STELLAR_SUBDIVISION( Polymake_Data*, Obj, Obj );
44
45
46
Obj REAL_F_VECTOR( Polymake_Data*, Obj );
47