[Wsplgen-commits] r151 - in trunk: . bin/windows src
scm-commit@wald.intevation.org
scm-commit at wald.intevation.org
Fri Nov 13 09:13:53 CET 2009
Author: mrchip
Date: 2009-11-13 09:13:50 +0100 (Fri, 13 Nov 2009)
New Revision: 151
Modified:
trunk/NEWS
trunk/bin/windows/wsplgen.exe
trunk/src/tools.cpp
trunk/src/wsplgen.h
Log:
Einige Ausgaben nur noch mit Output=9
Modified: trunk/NEWS
===================================================================
--- trunk/NEWS 2009-11-12 21:44:47 UTC (rev 150)
+++ trunk/NEWS 2009-11-13 08:13:50 UTC (rev 151)
@@ -10,6 +10,10 @@
// Read the file COPYING coming with WSPLGEN for details.
//
+Version 1.3.4
+
+ - Einige überflüssige Ausgaben werden nun nur noch bei (DebugLevel=9) ausgegeben
+
Version 1.3.3
- Die Ausgabe von länger dauernden Vorgängen erfolgt nun im Sekundenabstand
Modified: trunk/bin/windows/wsplgen.exe
===================================================================
(Binary files differ)
Modified: trunk/src/tools.cpp
===================================================================
--- trunk/src/tools.cpp 2009-11-12 21:44:47 UTC (rev 150)
+++ trunk/src/tools.cpp 2009-11-13 08:13:50 UTC (rev 151)
@@ -1634,7 +1634,7 @@
SaveNodes("temp1.shp", Temp1NodeList, 8);
}
- write_fortschritt(DebugLevel ,"%d Knoten in Temp1 bei Profil %.4f\n", Temp1NodeList->size(), Station / 10000.0);
+ if (DebugLevel >= 9) write_fortschritt(9, "%d Knoten in Temp1 bei Profil %.4f\n", Temp1NodeList->size(), Station / 10000.0);
// In Temp1 sind nun alle Nassen Knoten
// In Temp2 kommen alle potentiellen nassen Knoten
@@ -1667,12 +1667,12 @@
if (Edge->Node1 == Node && Edge->Node2->Wsp == NoWsp && (false == Sperre || Edge->Node2->Z < Wsp))
{
Temp2NodeList->AddUnique(Edge->Node2);
- write_fortschritt(DebugLevel, "möglicher nasser Knoten bei Profil %.4f: (%ld,%ld,%.3f)\n", Station / 10000.0, Edge->Node2->X, Edge->Node2->Y, Wsp / 100.0);
+ if (DebugLevel >= 9) write_fortschritt(9, "möglicher nasser Knoten bei Profil %.4f: (%ld,%ld,%.3f)\n", Station / 10000.0, Edge->Node2->X, Edge->Node2->Y, Wsp / 100.0);
}
if (Edge->Node2 == Node && Edge->Node1->Wsp == NoWsp && (false == Sperre || Edge->Node1->Z < Wsp))
{
Temp2NodeList->AddUnique(Edge->Node1);
- write_fortschritt(DebugLevel, "möglicher nasser Knoten bei Profil %.4f: (%ld,%ld,%.3f)\n", Station / 10000.0, Edge->Node1->X, Edge->Node1->Y, Wsp / 100.0);
+ if (DebugLevel >= 9) write_fortschritt(9, "möglicher nasser Knoten bei Profil %.4f: (%ld,%ld,%.3f)\n", Station / 10000.0, Edge->Node1->X, Edge->Node1->Y, Wsp / 100.0);
}
}
AktEdgeIndex = NextEdgeIndex;
@@ -1714,7 +1714,7 @@
NassNodeList->Add(Node);
- write_fortschritt(DebugLevel, "nasser Knoten bei Profil %.4f: (%ld,%ld,%.2f)\n", Station / 10000.0, Node->X, Node->Y, Wsp / 100.0);
+ if (DebugLevel >= 9) write_fortschritt(9, "nasser Knoten bei Profil %.4f: (%ld,%ld,%.2f)\n", Station / 10000.0, Node->X, Node->Y, Wsp / 100.0);
}
Temp1NodeList->Add(Node);
@@ -1723,7 +1723,7 @@
AktEdgeIndex = NextEdgeIndex;
}
- write_fortschritt(DebugLevel, "nasser Knoten bei Profil %.4f: (%ld,%ld)\n", Station / 10000.0, Node->X, Node->Y);
+ if (DebugLevel >= 9) write_fortschritt(9, "nasser Knoten bei Profil %.4f: (%ld,%ld)\n", Station / 10000.0, Node->X, Node->Y);
}
Temp2NodeList->clear();
Modified: trunk/src/wsplgen.h
===================================================================
--- trunk/src/wsplgen.h 2009-11-12 21:44:47 UTC (rev 150)
+++ trunk/src/wsplgen.h 2009-11-13 08:13:50 UTC (rev 151)
@@ -10,7 +10,7 @@
// Read the file COPYING coming with WSPLGEN for details.
//
-const char Version[] = "1.3.3";
+const char Version[] = "1.3.4";
// In der Datei wsplgen.h wird jetzt keine Historie mehr gespeichert.
// Diese ist nun in der Datei NEWS zu finden
More information about the Wsplgen-commits
mailing list