Changeset 200d16 in git
- Timestamp:
- Aug 5, 2016, 1:40:25 PM (7 years ago)
- Branches:
- (u'spielwiese', '0d6b7fcd9813a1ca1ed4220cfa2b104b97a0a003')
- Children:
- 0b0d1e235cc8f64fa08f71fc6033108c88e1715b
- Parents:
- 33c804c113f6bd9933f85aab798342bd8d7964cb
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
Singular/dyn_modules/polymake/polymake_wrapper.cc
r33c804c r200d16 972 972 { 973 973 polymake::perl::Object* p = ZPolytope2PmPolytope(zp); 974 #if (POLYMAKEVERSION >=300) 974 975 polymake::Matrix<polymake::Integer> lp = p->CallPolymakeMethod("LATTICE_POINTS"); 976 #elif (POLYMAKEVERSION >=212) 977 polymake::Matrix<polymake::Integer> lp = p->give("LATTICE_POINTS"); 978 #else 979 #error polymake version too old 980 #endif 975 981 delete p; 976 982 iv = PmMatrixInteger2Intvec(&lp,ok); … … 1176 1182 { 1177 1183 polymake::perl::Object* p = ZPolytope2PmPolytope(zp); 1184 #if (POLYMAKEVERSION >=300) 1178 1185 polymake::Matrix<polymake::Integer> lp = p->CallPolymakeMethod("HILBERT_BASIS"); 1186 #elif (POLYMAKEVERSION >=212) 1187 polymake::Matrix<polymake::Integer> lp = p->give("HILBERT_BASIS"); 1188 #else 1189 #error polymake version too old 1190 #endif 1179 1191 delete p; 1180 1192 iv = PmMatrixInteger2Intvec(&lp,ok);
Note: See TracChangeset
for help on using the changeset viewer.