From: <fa...@us...> - 2009-01-27 18:00:33
|
Revision: 4413 http://fudaa.svn.sourceforge.net/fudaa/?rev=4413&view=rev Author: fargeix Date: 2009-01-27 18:00:25 +0000 (Tue, 27 Jan 2009) Log Message: ----------- Correction du bug de g?\195?\169n?\195?\169ration des fichiers INP (cette modif est prise en compte dans la version 0.93 de Fudaa-Prepro) Modified Paths: -------------- trunk/fudaa_devel/dodico/src/org/fudaa/dodico/reflux/io/INPWriterAbstract.java Modified: trunk/fudaa_devel/dodico/src/org/fudaa/dodico/reflux/io/INPWriterAbstract.java =================================================================== --- trunk/fudaa_devel/dodico/src/org/fudaa/dodico/reflux/io/INPWriterAbstract.java 2009-01-27 17:12:46 UTC (rev 4412) +++ trunk/fudaa_devel/dodico/src/org/fudaa/dodico/reflux/io/INPWriterAbstract.java 2009-01-27 18:00:25 UTC (rev 4413) @@ -880,8 +880,9 @@ final Map clGroupeCL = new HashMap(nbCl / 2); CLGroup temp = new CLGroup(); final TIntObjectHashMap globIdxBc = new TIntObjectHashMap(grid_.getFrontiers().getNbTotalPt()); + int k = 0; for (AllFrontierIteratorInterface it = grid_.getFrontiers().getAllFrontierIterator(); it.hasNext();) { - final H2dRefluxBoundaryCondition cli = inter_.getConditionLimite(it.next()); + final H2dRefluxBoundaryCondition cli = inter_.getConditionLimite(k++);it.next(); globIdxBc.put(cli.getIndexPt(), cli); // h if (cli.getHType() != H2dBcType.LIBRE) { This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |