[mathicgb] 277/393: Added a log alias named default and made -log do that one instead of the all alias.

Doug Torrance dtorrance-guest at moszumanska.debian.org
Fri Apr 3 15:59:19 UTC 2015


This is an automated email from the git hooks/post-receive script.

dtorrance-guest pushed a commit to branch upstream
in repository mathicgb.

commit 01348187441c0e6e14dbf709da9feda221eec9a4
Author: Bjarke Hammersholt Roune <bjarkehr.code at gmail.com>
Date:   Wed Apr 17 17:02:09 2013 -0400

    Added a log alias named default and made -log do that one instead of the all alias.
---
 src/cli/CommonParams.cpp   | 4 +++-
 src/mathicgb/F4Reducer.cpp | 5 +++--
 2 files changed, 6 insertions(+), 3 deletions(-)

diff --git a/src/cli/CommonParams.cpp b/src/cli/CommonParams.cpp
index 461f97c..8413491 100755
--- a/src/cli/CommonParams.cpp
+++ b/src/cli/CommonParams.cpp
@@ -4,6 +4,8 @@
 #include "mathicgb/LogDomain.hpp"
 #include "mathicgb/LogDomainSet.hpp"
 
+MATHICGB_DEFINE_LOG_ALIAS("default", "F4Detail,SPairs");
+
 CommonParams::CommonParams(size_t minDirectParams, size_t maxDirectParams):
   mTracingLevel("tracingLevel",
     "How much information to print out about what the program does. No "
@@ -48,7 +50,7 @@ void CommonParams::pushBackParameters(
 }
 
 void CommonParams::perform() {
-  const std::string logs = mLogs.value().empty() ? "all" : mLogs.value();
+  const std::string logs = mLogs.value().empty() ? "default" : mLogs.value();
   LogDomainSet::singleton().performLogCommands(logs);
   tracingLevel = mTracingLevel.value();
 
diff --git a/src/mathicgb/F4Reducer.cpp b/src/mathicgb/F4Reducer.cpp
index 60a1ff5..680d5f0 100755
--- a/src/mathicgb/F4Reducer.cpp
+++ b/src/mathicgb/F4Reducer.cpp
@@ -32,12 +32,13 @@ MATHICGB_DEFINE_LOG_DOMAIN(
 MATHICGB_DEFINE_LOG_ALIAS(
   "F4Detail",
   "F4MatrixEntries,F4MatrixBottomRows,F4MatrixTopRows,F4MatrixRows,"
-  "F4MatrixBuild,F4MatrixBuild2,F4MatrixReduce,F4"
+  "F4MatrixReduce,F4"
 );
 
 MATHICGB_DEFINE_LOG_ALIAS(
   "F4",
-  "F4MatrixSizes,F4MatrixBuild2,F4SPairDegree,F4MatReduceTop,F4RedBottomRight"
+  "F4MatrixSizes,F4MatrixBuild,F4MatrixBuild2,"
+  "F4SPairDegree,F4MatReduceTop,F4RedBottomRight"
 );
 
 F4Reducer::F4Reducer(const PolyRing& ring, Type type):

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/debian-science/packages/mathicgb.git



More information about the debian-science-commits mailing list