Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/moses-smt/mosesdecoder.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorhieuhoang1972 <hieuhoang1972@1f5c12ca-751b-0410-a591-d2e778427230>2007-03-04 03:43:45 +0300
committerhieuhoang1972 <hieuhoang1972@1f5c12ca-751b-0410-a591-d2e778427230>2007-03-04 03:43:45 +0300
commit5f22fb13d3a9b20e63fbacdcb9a0674829ab7ab7 (patch)
treeb83b91d75c9605722e9597fb83c6ab20b53c062b /moses-cmd
parent2c9f1a13fe4c3b2eac635db3703d7954ff039634 (diff)
make output of decimal places consistent by not format anywhere but in Main.cpp
git-svn-id: https://mosesdecoder.svn.sourceforge.net/svnroot/mosesdecoder/trunk@1266 1f5c12ca-751b-0410-a591-d2e778427230
Diffstat (limited to 'moses-cmd')
-rw-r--r--moses-cmd/src/Main.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/moses-cmd/src/Main.cpp b/moses-cmd/src/Main.cpp
index 7f9f7d341..042b1161a 100644
--- a/moses-cmd/src/Main.cpp
+++ b/moses-cmd/src/Main.cpp
@@ -80,9 +80,9 @@ int main(int argc, char* argv[])
}
cout.setf(std::ios::fixed);
- cout.precision(5);
+ cout.precision(3);
cerr.setf(std::ios::fixed);
- cerr.precision(5);
+ cerr.precision(3);
// load data structures
Parameter *parameter = new Parameter();