Skip to content
Snippets Groups Projects
Commit 8c47ab24 authored by Jonathan Lambrechts's avatar Jonathan Lambrechts
Browse files

dg:convert allmost all validation benchmarks to python3

parent 47bdcf6b
No related branches found
No related tags found
No related merge requests found
......@@ -53,6 +53,10 @@ namespace std {
%template(GFaceList) list<GFace*, std::allocator<GFace*> >;
%template(GEdgeList) list<GEdge*, std::allocator<GEdge*> >;
%template(GLevelsetVector) vector<gLevelset *, std::allocator<gLevelset *> >;
%template(IntVector) std::vector<int>;
%template(DoubleVector) std::vector<double, std::allocator<double> >;
%template(DoubleVectorVector) std::vector<std::vector<double, std::allocator<double> > >;
%template(StringVector) std::vector<std::string, std::allocator<std::string> >;
}
%include "GmshConfig.h"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment