← Back to team overview

yade-dev team mailing list archive

[Branch ~yade-pkg/yade/git-trunk] Rev 3985: 2PFLOW engine: remove useless int from getInterfaces()'s parameters

 

------------------------------------------------------------
revno: 3985
committer: bchareyre <bruno.chareyre@xxxxxxxxxxxxxxx>
timestamp: Tue 2016-12-20 13:45:40 +0100
message:
  2PFLOW engine: remove useless int from getInterfaces()'s parameters
modified:
  pkg/pfv/TwoPhaseFlowEngine.hpp


--
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 'pkg/pfv/TwoPhaseFlowEngine.hpp'
--- pkg/pfv/TwoPhaseFlowEngine.hpp	2016-12-19 16:47:50 +0000
+++ pkg/pfv/TwoPhaseFlowEngine.hpp	2016-12-20 12:45:40 +0000
@@ -73,7 +73,7 @@
 			for (vector<TwoPhaseFlowEngineT::CellHandle>::iterator it =  pores.begin(); it!=pores.end(); it++) res.push_back((*it)->info().id);
 			return res;}
 			
-		boost::python::list getInterfaces(unsigned int clusterId){
+		boost::python::list getInterfaces(){
 			boost::python::list ints;
 			for (vector<std::pair<std::pair<unsigned int,unsigned int>,double> >::iterator it =  interfaces.begin(); it!=interfaces.end(); it++)
 				ints.append(boost::python::make_tuple(it->first.first,it->first.second,it->second));