yade-dev team mailing list archive
-
yade-dev team
-
Mailing list archive
-
Message #11058
[Branch ~yade-pkg/yade/git-trunk] Rev 4082: Cut off some header inclusions.
------------------------------------------------------------
revno: 4082
committer: Anton Gladky <gladky.anton@xxxxxxxxx>
timestamp: Mon 2014-07-14 22:08:34 +0200
message:
Cut off some header inclusions.
modified:
core/Omega.cpp
core/Omega.hpp
core/main/pyboot.cpp
gui/qt4/GLViewer.cpp
gui/qt4/GLViewer.hpp
gui/qt4/GLViewerDisplay.cpp
gui/qt4/GLViewerMouse.cpp
lib/base/Math.hpp
lib/factory/DynLibManager.cpp
pkg/common/PersistentTriangulationCollider.hpp
pkg/dem/CapillaryTriaxialTest.cpp
pkg/dem/CohesiveTriaxialTest.cpp
pkg/dem/ElasticContactLaw.hpp
pkg/dem/FrictViscoPM.hpp
pkg/dem/HertzMindlin.hpp
pkg/dem/Law2_ScGeom_CapillaryPhys_Capillarity.hpp
pkg/dem/MicroMacroAnalyser.hpp
pkg/dem/Shop_01.cpp
pkg/dem/Shop_02.cpp
pkg/dem/SimpleShear.cpp
pkg/dem/TriaxialTest.cpp
pkg/lbm/HydrodynamicsLawLBM.cpp
py/wrapper/yadeWrapper.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/Omega.cpp'
--- core/Omega.cpp 2014-07-11 17:39:21 +0000
+++ core/Omega.cpp 2014-07-14 20:08:34 +0000
@@ -15,9 +15,6 @@
#include<yade/lib/base/Math.hpp>
#include<yade/lib/multimethods/FunctorWrapper.hpp>
#include<yade/lib/multimethods/Indexable.hpp>
-#include<boost/filesystem/operations.hpp>
-#include<boost/filesystem/convenience.hpp>
-#include<boost/filesystem/exception.hpp>
#include<boost/algorithm/string.hpp>
#include<boost/thread/mutex.hpp>
=== modified file 'core/Omega.hpp'
--- core/Omega.hpp 2014-07-04 17:46:32 +0000
+++ core/Omega.hpp 2014-07-14 20:08:34 +0000
@@ -13,16 +13,14 @@
#include <Python.h>
#include <boost/date_time/posix_time/posix_time.hpp>
#include <fstream>
-#include <set>
-#include <list>
#include <time.h>
#include <boost/thread/thread.hpp>
#include <iostream>
-#include<yade/lib/base/Math.hpp>
-#include<yade/lib/factory/ClassFactory.hpp>
+#include <yade/lib/base/Math.hpp>
+#include <yade/lib/factory/ClassFactory.hpp>
-#include<yade/lib/base/Singleton.hpp>
+#include <yade/lib/base/Singleton.hpp>
#include "SimulationFlow.hpp"
=== modified file 'core/main/pyboot.cpp'
--- core/main/pyboot.cpp 2014-07-03 17:20:40 +0000
+++ core/main/pyboot.cpp 2014-07-14 20:08:34 +0000
@@ -3,8 +3,6 @@
#include<signal.h>
-#include<boost/filesystem/convenience.hpp>
-
#ifdef YADE_DEBUG
void crashHandler(int sig){
switch(sig){
=== modified file 'gui/qt4/GLViewer.cpp'
--- gui/qt4/GLViewer.cpp 2014-07-03 17:20:40 +0000
+++ gui/qt4/GLViewer.cpp 2014-07-14 20:08:34 +0000
@@ -16,7 +16,6 @@
#include<yade/core/Scene.hpp>
#include<yade/core/Interaction.hpp>
#include<yade/core/DisplayParameters.hpp>
-#include<boost/filesystem/operations.hpp>
#include<boost/algorithm/string.hpp>
#include<sstream>
#include<iomanip>
=== modified file 'gui/qt4/GLViewer.hpp'
--- gui/qt4/GLViewer.hpp 2014-07-03 07:15:45 +0000
+++ gui/qt4/GLViewer.hpp 2014-07-14 20:08:34 +0000
@@ -12,7 +12,6 @@
#include<QGLViewer/qglviewer.h>
#include<QGLViewer/manipulatedFrame.h>
#include<QGLViewer/constraint.h>
-#include<set>
using std::setw;
using std::setfill;
=== modified file 'gui/qt4/GLViewerDisplay.cpp'
--- gui/qt4/GLViewerDisplay.cpp 2014-07-11 17:39:21 +0000
+++ gui/qt4/GLViewerDisplay.cpp 2014-07-14 20:08:34 +0000
@@ -16,7 +16,6 @@
#include<yade/core/Scene.hpp>
#include<yade/core/Interaction.hpp>
#include<yade/core/DisplayParameters.hpp>
-#include<boost/filesystem/operations.hpp>
#include<boost/algorithm/string.hpp>
#include<sstream>
#include<iomanip>
=== modified file 'gui/qt4/GLViewerMouse.cpp'
--- gui/qt4/GLViewerMouse.cpp 2014-07-03 17:20:40 +0000
+++ gui/qt4/GLViewerMouse.cpp 2014-07-14 20:08:34 +0000
@@ -16,7 +16,6 @@
#include<yade/core/Scene.hpp>
#include<yade/core/Interaction.hpp>
#include<yade/core/DisplayParameters.hpp>
-#include<boost/filesystem/operations.hpp>
#include<boost/algorithm/string.hpp>
#include<sstream>
#include<iomanip>
=== modified file 'lib/base/Math.hpp'
--- lib/base/Math.hpp 2014-07-11 18:27:33 +0000
+++ lib/base/Math.hpp 2014-07-14 20:08:34 +0000
@@ -63,6 +63,11 @@
#include <boost/python/class.hpp>
#include <boost/shared_ptr.hpp>
#include <boost/foreach.hpp>
+#include <boost/tuple/tuple.hpp>
+#include <boost/filesystem/convenience.hpp>
+#include <boost/filesystem/operations.hpp>
+#include <boost/filesystem/exception.hpp>
+#include <boost/numeric/conversion/bounds.hpp>
using boost::shared_ptr;
=== modified file 'lib/factory/DynLibManager.cpp'
--- lib/factory/DynLibManager.cpp 2014-07-03 17:20:40 +0000
+++ lib/factory/DynLibManager.cpp 2014-07-14 20:08:34 +0000
@@ -8,10 +8,6 @@
*************************************************************************/
#include "DynLibManager.hpp"
-
-#include<boost/filesystem/operations.hpp>
-#include<boost/filesystem/convenience.hpp>
-
#include "ClassFactory.hpp"
CREATE_LOGGER(DynLibManager);
=== modified file 'pkg/common/PersistentTriangulationCollider.hpp'
--- pkg/common/PersistentTriangulationCollider.hpp 2010-11-07 11:46:20 +0000
+++ pkg/common/PersistentTriangulationCollider.hpp 2014-07-14 20:08:34 +0000
@@ -9,10 +9,6 @@
#pragma once
#include<yade/pkg/common/Collider.hpp>
#include<yade/core/InteractionContainer.hpp>
-#include <list>
-#include <set>
-#include <vector>
-#include <algorithm>
#include<yade/pkg/dem/TesselationWrapper.hpp>
/*! \brief Collision detection engine based on regular triangulation.
=== modified file 'pkg/dem/CapillaryTriaxialTest.cpp'
--- pkg/dem/CapillaryTriaxialTest.cpp 2014-07-14 20:08:34 +0000
+++ pkg/dem/CapillaryTriaxialTest.cpp 2014-07-14 20:08:34 +0000
@@ -41,7 +41,6 @@
#include<yade/pkg/dem/Shop.hpp>
-#include <boost/filesystem/convenience.hpp>
#include <boost/numeric/conversion/bounds.hpp>
#include <boost/limits.hpp>
=== modified file 'pkg/dem/CohesiveTriaxialTest.cpp'
--- pkg/dem/CohesiveTriaxialTest.cpp 2014-07-14 20:08:33 +0000
+++ pkg/dem/CohesiveTriaxialTest.cpp 2014-07-14 20:08:34 +0000
@@ -36,8 +36,6 @@
#include<yade/pkg/dem/Shop.hpp>
-#include <boost/filesystem/convenience.hpp>
-#include <boost/numeric/conversion/bounds.hpp>
#include <boost/limits.hpp>
// random
=== modified file 'pkg/dem/ElasticContactLaw.hpp'
--- pkg/dem/ElasticContactLaw.hpp 2013-01-14 21:20:06 +0000
+++ pkg/dem/ElasticContactLaw.hpp 2014-07-14 20:08:34 +0000
@@ -13,9 +13,6 @@
#include<yade/pkg/dem/ScGeom.hpp>
#include<yade/lib/base/openmp-accu.hpp>
-#include<set>
-#include<boost/tuple/tuple.hpp>
-
class Law2_ScGeom_FrictPhys_CundallStrack: public LawFunctor{
public:
OpenMPAccumulator<Real> plasticDissipation;
=== modified file 'pkg/dem/FrictViscoPM.hpp'
--- pkg/dem/FrictViscoPM.hpp 2014-07-03 17:20:40 +0000
+++ pkg/dem/FrictViscoPM.hpp 2014-07-14 20:08:34 +0000
@@ -26,8 +26,6 @@
#include<yade/pkg/dem/ScGeom.hpp>
#include<yade/lib/base/openmp-accu.hpp>
-#include<boost/tuple/tuple.hpp>
-
/** This class holds information associated with each body */
class FrictViscoMat: public FrictMat {
public:
=== modified file 'pkg/dem/HertzMindlin.hpp'
--- pkg/dem/HertzMindlin.hpp 2014-07-14 20:08:33 +0000
+++ pkg/dem/HertzMindlin.hpp 2014-07-14 20:08:34 +0000
@@ -18,7 +18,6 @@
#include<yade/pkg/common/NormShearPhys.hpp>
#include<yade/pkg/common/MatchMaker.hpp>
-#include <set>
#include <boost/tuple/tuple.hpp>
#include<yade/lib/base/openmp-accu.hpp>
=== modified file 'pkg/dem/Law2_ScGeom_CapillaryPhys_Capillarity.hpp'
--- pkg/dem/Law2_ScGeom_CapillaryPhys_Capillarity.hpp 2014-07-03 17:20:40 +0000
+++ pkg/dem/Law2_ScGeom_CapillaryPhys_Capillarity.hpp 2014-07-14 20:08:34 +0000
@@ -11,8 +11,6 @@
#pragma once
#include <yade/core/GlobalEngine.hpp>
-#include <boost/tuple/tuple.hpp>
-#include <utility>
/**
This law allows one to take into account capillary forces/effects between spheres coming from the presence of interparticular liquid bridges (menisci).
=== modified file 'pkg/dem/MicroMacroAnalyser.hpp'
--- pkg/dem/MicroMacroAnalyser.hpp 2014-03-21 18:47:45 +0000
+++ pkg/dem/MicroMacroAnalyser.hpp 2014-07-14 20:08:34 +0000
@@ -10,10 +10,6 @@
#include<yade/core/GlobalEngine.hpp>
#include<yade/lib/triangulation/KinematicLocalisationAnalyser.hpp>
-#include <set>
-#include <boost/tuple/tuple.hpp>
-#include <string>
-#include <fstream>
/*! \brief compute fabric tensor, local porosity, local deformation, and other micromechanicaly defined quantities based on triangulation/tesselation of the packing.
=== modified file 'pkg/dem/Shop_01.cpp'
--- pkg/dem/Shop_01.cpp 2014-07-14 20:08:34 +0000
+++ pkg/dem/Shop_01.cpp 2014-07-14 20:08:34 +0000
@@ -1,9 +1,6 @@
// 2007 © Václav Šmilauer <eudoxos@xxxxxxxx>
#include"Shop.hpp"
-
-#include<boost/filesystem/convenience.hpp>
#include<boost/tokenizer.hpp>
-#include<boost/tuple/tuple.hpp>
#include"yade/core/Scene.hpp"
#include"yade/core/Body.hpp"
=== modified file 'pkg/dem/Shop_02.cpp'
--- pkg/dem/Shop_02.cpp 2014-07-14 20:08:34 +0000
+++ pkg/dem/Shop_02.cpp 2014-07-14 20:08:34 +0000
@@ -1,12 +1,6 @@
// 2007 © Václav Šmilauer <eudoxos@xxxxxxxx>
#include"Shop.hpp"
-#include<limits>
-
-#include<boost/filesystem/convenience.hpp>
-#include<boost/tokenizer.hpp>
-#include<boost/tuple/tuple.hpp>
-
#include<yade/core/Scene.hpp>
#include<yade/core/Body.hpp>
#include<yade/core/Interaction.hpp>
=== modified file 'pkg/dem/SimpleShear.cpp'
--- pkg/dem/SimpleShear.cpp 2014-07-14 20:08:34 +0000
+++ pkg/dem/SimpleShear.cpp 2014-07-14 20:08:34 +0000
@@ -36,7 +36,6 @@
#include<yade/pkg/common/Box.hpp>
#include<yade/pkg/common/Sphere.hpp>
-#include <boost/filesystem/convenience.hpp>
#include <utility>
YADE_PLUGIN((SimpleShear))
=== modified file 'pkg/dem/TriaxialTest.cpp'
--- pkg/dem/TriaxialTest.cpp 2014-07-14 20:08:34 +0000
+++ pkg/dem/TriaxialTest.cpp 2014-07-14 20:08:34 +0000
@@ -39,7 +39,6 @@
#include<yade/pkg/common/Bo1_Facet_Aabb.hpp>
#include<yade/pkg/common/Wall.hpp>
-#include <boost/filesystem/convenience.hpp>
#include <boost/numeric/conversion/bounds.hpp>
#include <boost/limits.hpp>
// random
=== modified file 'pkg/lbm/HydrodynamicsLawLBM.cpp'
--- pkg/lbm/HydrodynamicsLawLBM.cpp 2014-07-14 20:08:33 +0000
+++ pkg/lbm/HydrodynamicsLawLBM.cpp 2014-07-14 20:08:34 +0000
@@ -26,7 +26,6 @@
#include"HydrodynamicsLawLBM.hpp"
#include<yade/core/Omega.hpp>
#include<yade/core/Scene.hpp>
-#include<boost/filesystem/operations.hpp>
#include<yade/pkg/common/Box.hpp>
#include<yade/pkg/common/Sphere.hpp>
#include<yade/pkg/dem/CohesiveFrictionalContactLaw.hpp>
=== modified file 'py/wrapper/yadeWrapper.cpp'
--- py/wrapper/yadeWrapper.cpp 2014-07-11 17:39:21 +0000
+++ py/wrapper/yadeWrapper.cpp 2014-07-14 20:08:34 +0000
@@ -9,7 +9,6 @@
#include<boost/bind.hpp>
#include<boost/lambda/bind.hpp>
#include<boost/thread/thread.hpp>
-#include<boost/filesystem/operations.hpp>
#include<boost/date_time/posix_time/posix_time.hpp>
#include<boost/algorithm/string.hpp>