From 9772ab49a1109bd7dd431be44bb1a0f9834f203d Mon Sep 17 00:00:00 2001 From: Laurent Van Migroet <l.vanmiegroet@ulg.ac.be> Date: Tue, 4 Jan 2011 14:56:48 +0000 Subject: [PATCH] Several patch for visual studio --- CMakeLists.txt | 8 ++++++-- Geo/GModel.cpp | 2 +- Mesh/meshGFaceOptimize.cpp | 1 + Mesh/meshPartition.cpp | 5 +++-- Plugin/GSHHS.cpp | 6 ++++-- 5 files changed, 15 insertions(+), 7 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 0f1f3ffc62..3cf7db93d6 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -777,11 +777,15 @@ if(MSVC) add_definitions(-D_USE_MATH_DEFINES -DNOMINMAX -D_CRT_SECURE_NO_DEPRECATE -D_SCL_SECURE_NO_DEPRECATE) set(GMSH_SRC ${GMSH_SRC};Fltk/Win32Icon.rc) - list(APPEND EXTERNAL_LIBRARIES "ws2_32") + list(APPEND EXTERNAL_LIBRARIES "ws2_32.lib") endif(MSVC) if(WIN32 AND NOT HAVE_FLTK) - list(APPEND EXTERNAL_LIBRARIES "ws2_32 wsock32") + if(MSVC) + list(APPEND EXTERNAL_LIBRARIES "wsock32.lib") + ELSE(MSVC) + list(APPEND EXTERNAL_LIBRARIES "ws2_32.lib wsock32.lib") + ENDIF(MSVC) endif(WIN32 AND NOT HAVE_FLTK) list(SORT CONFIG_OPTIONS) diff --git a/Geo/GModel.cpp b/Geo/GModel.cpp index 1e1148797b..2e0a1c3a5e 100644 --- a/Geo/GModel.cpp +++ b/Geo/GModel.cpp @@ -267,7 +267,7 @@ std::vector<GEntity*> GModel::getEdgesByStringTag(const std::string tag) std::map<int, std::vector<GEntity*> > physicalGroups[4]; this->getPhysicalGroups(physicalGroups); allEdges = physicalGroups[1][this->getPhysicalNumber(1,tag)]; - + return allEdges; } GEdge *GModel::getFirstEdgeByStringTag(const std::string tag) { diff --git a/Mesh/meshGFaceOptimize.cpp b/Mesh/meshGFaceOptimize.cpp index 404a1aad05..20794238d7 100644 --- a/Mesh/meshGFaceOptimize.cpp +++ b/Mesh/meshGFaceOptimize.cpp @@ -1188,6 +1188,7 @@ int postProcessExtraEdges (GFace *gf, std::vector<std::pair<MElement*,MElement*> } gf->triangles = remained; */ + return 0; } bool edgeSwap(std::set<swapquad> &configs, MTri3 *t1, GFace *gf, int iLocalEdge, diff --git a/Mesh/meshPartition.cpp b/Mesh/meshPartition.cpp index 95ee43016a..905b80664d 100644 --- a/Mesh/meshPartition.cpp +++ b/Mesh/meshPartition.cpp @@ -437,7 +437,8 @@ int PartitionGraph(Graph &graph, meshPartitionOptions &options) int numflag = 0; // if metisOptions[0]=0 then default options int metisOptions[5]; - float ubvec[options.ncon]; + std::vector<float> ubvec(options.ncon); +// float ubvec[options.ncon]; int edgeCut; const int iSec = 0; switch(options.algorithm) { @@ -522,7 +523,7 @@ int PartitionGraph(Graph &graph, meshPartitionOptions &options) METIS_mCPartGraphKway (&n,&options.ncon,&graph.xadj[graph.section[iSec]], &graph.adjncy[graph.section[iSec]], &graph.vwgts[graph.section[iSec]], NULL, &wgtflag, &numflag, - &options.num_partitions,ubvec, metisOptions, &edgeCut, + &options.num_partitions,&ubvec[0], metisOptions, &edgeCut, &graph.partition[graph.section[iSec]]); } break; diff --git a/Plugin/GSHHS.cpp b/Plugin/GSHHS.cpp index 68a3629f81..6dcdf3a049 100644 --- a/Plugin/GSHHS.cpp +++ b/Plugin/GSHHS.cpp @@ -16,7 +16,9 @@ class Field { virtual double operator() (double x, double y, double z){ return 0.; } }; #endif - +#if defined(_MSC_VER) +inline double round(double x) { return floor(x + 0.5); } +#endif class GMSH_GSHHSPlugin : public GMSH_PostPlugin { public: @@ -559,7 +561,7 @@ public: }while(p!=i1); i0->to_stereo(x[2],y[2],reverse_stereo); alpha+=get_angle(x[0],y[0],x[1],y[1],x[2],y[2]); - return (int)round(alpha/(M_PI*2)); + return (int)round(alpha/(M_PI*2)); } int length(iterator i0,iterator i1) { -- GitLab