yade-dev team mailing list archive
-
yade-dev team
-
Mailing list archive
-
Message #10874
[Branch ~yade-pkg/yade/git-trunk] Rev 3979: Fix compilation in DEBIG-mode.
------------------------------------------------------------
revno: 3979
committer: Anton Gladky <gladky.anton@xxxxxxxxx>
timestamp: Fri 2014-05-23 15:20:43 +0200
message:
Fix compilation in DEBIG-mode.
modified:
core/main/pyboot.cpp
pkg/dem/CapillaryTriaxialTest.cpp
pkg/dem/ViscoelasticCapillarPM.hpp
pkg/pfv/DummyFlowEngine.cpp
pkg/pfv/SoluteFlowEngine.cpp
--
lp:yade
https://code.launchpad.net/~yade-pkg/yade/git-trunk
Your team Yade developers is subscribed to branch lp:yade.
To unsubscribe from this branch go to https://code.launchpad.net/~yade-pkg/yade/git-trunk/+edit-subscription
=== modified file 'core/main/pyboot.cpp'
--- core/main/pyboot.cpp 2014-05-23 13:03:50 +0000
+++ core/main/pyboot.cpp 2014-05-23 13:20:43 +0000
@@ -38,7 +38,7 @@
#ifdef YADE_DEBUG
ofstream gdbBatch;
O.gdbCrashBatch=O.tmpFilename();
- gdbBatch.open(O.gdbCrashBatch.c_str()); gdbBatch<<"attach "<<lexical_cast<string>(getpid())<<"\nset pagination off\nthread info\nthread apply all backtrace\ndetach\nquit\n"; gdbBatch.close();
+ gdbBatch.open(O.gdbCrashBatch.c_str()); gdbBatch<<"attach "<<boost::lexical_cast<string>(getpid())<<"\nset pagination off\nthread info\nthread apply all backtrace\ndetach\nquit\n"; gdbBatch.close();
signal(SIGABRT,crashHandler);
signal(SIGSEGV,crashHandler);
#endif
=== modified file 'pkg/dem/CapillaryTriaxialTest.cpp'
--- pkg/dem/CapillaryTriaxialTest.cpp 2014-05-23 13:05:19 +0000
+++ pkg/dem/CapillaryTriaxialTest.cpp 2014-05-23 13:20:43 +0000
@@ -197,7 +197,7 @@
return true;
// return "Generated a sample inside box of dimensions: ("
-// + lexical_cast<string>(lowerCorner[0]) + ","
+// + boost::lexical_cast<string>(lowerCorner[0]) + ","
// + boost::lexical_cast<string>(lowerCorner[1]) + ","
// + boost::lexical_cast<string>(lowerCorner[2]) + ") and ("
// + boost::lexical_cast<string>(upperCorner[0]) + ","
=== modified file 'pkg/dem/ViscoelasticCapillarPM.hpp'
--- pkg/dem/ViscoelasticCapillarPM.hpp 2014-05-09 13:25:19 +0000
+++ pkg/dem/ViscoelasticCapillarPM.hpp 2014-05-23 13:20:43 +0000
@@ -97,8 +97,8 @@
((Real,vMaxCoef,0.03,, "Coefficient for vMax, [-]."))
,/* ctor */
,/* py */
- .def("totalLiq",&LiqControl::totalLiqVol,(python::arg("mask")=0),"Return total volume of water in simulation.")
- .def("liqBody",&LiqControl::liqVolBody,(python::arg("id")=-1),"Return total volume of water in body.")
+ .def("totalLiq",&LiqControl::totalLiqVol,(boost::python::arg("mask")=0),"Return total volume of water in simulation.")
+ .def("liqBody",&LiqControl::liqVolBody,(boost::python::arg("id")=-1),"Return total volume of water in body.")
);
};
=== modified file 'pkg/pfv/DummyFlowEngine.cpp'
--- pkg/pfv/DummyFlowEngine.cpp 2014-04-03 16:45:33 +0000
+++ pkg/pfv/DummyFlowEngine.cpp 2014-05-23 13:20:43 +0000
@@ -48,7 +48,7 @@
((Real, myNewAttribute, 0,,"useless example"))
,/*DummyFlowEngineT()*/,
,
- .def("fancyFunction",&DummyFlowEngine::fancyFunction,(python::arg("what")=0),"test function")
+ .def("fancyFunction",&DummyFlowEngine::fancyFunction,(boost::python::arg("what")=0),"test function")
)
DECLARE_LOGGER;
};
@@ -57,4 +57,4 @@
void DummyFlowEngine::fancyFunction(Real what) {cerr<<"yes, I'm a new function"<<end;}
#undef TEMPLATE_FLOW_NAME DummyFlowEngineT //To be sure it will not conflict, maybe not needed
-#endif //DummyFLOW
\ No newline at end of file
+#endif //DummyFLOW
=== modified file 'pkg/pfv/SoluteFlowEngine.cpp'
--- pkg/pfv/SoluteFlowEngine.cpp 2014-04-11 08:07:46 +0000
+++ pkg/pfv/SoluteFlowEngine.cpp 2014-05-23 13:20:43 +0000
@@ -46,10 +46,10 @@
///No additional variable yet, else input here
// ((Vector3r, gradP, Vector3r::Zero(),,"Macroscopic pressure gradient"))
,,,
- .def("soluteTransport",&SoluteFlowEngine::soluteTransport,(python::arg("deltatime"),python::arg("D")),"Solute transport (advection and diffusion) engine for diffusion use a diffusion coefficient (D) other than 0.")
- .def("getConcentration",&SoluteFlowEngine::getConcentration,(python::arg("id")),"get concentration of pore with ID")
- .def("insertConcentration",&SoluteFlowEngine::insertConcentration,(python::arg("id"),python::arg("conc")),"Insert Concentration (ID, Concentration)")
- .def("solute_BC",&SoluteFlowEngine::soluteBC,(python::arg("bc_id1"),python::arg("bc_id2"),python::arg("bc_concentration1"),python::arg("bc_concentration2"),python::arg("s")),"Enter X,Y,Z for concentration observation'.")
+ .def("soluteTransport",&SoluteFlowEngine::soluteTransport,(boost::python::arg("deltatime"),boost::python::arg("D")),"Solute transport (advection and diffusion) engine for diffusion use a diffusion coefficient (D) other than 0.")
+ .def("getConcentration",&SoluteFlowEngine::getConcentration,(boost::python::arg("id")),"get concentration of pore with ID")
+ .def("insertConcentration",&SoluteFlowEngine::insertConcentration,(boost::python::arg("id"),boost::python::arg("conc")),"Insert Concentration (ID, Concentration)")
+ .def("solute_BC",&SoluteFlowEngine::soluteBC,(boost::python::arg("bc_id1"),boost::python::arg("bc_id2"),boost::python::arg("bc_concentration1"),boost::python::arg("bc_concentration2"),boost::python::arg("s")),"Enter X,Y,Z for concentration observation'.")
//I guess there is getConcentrationPlane missing here, but it is not on github
)
};