]> https://gitweb.dealii.org/ - dealii.git/commitdiff
Remove one line of unnecessary output.
authorWolfgang Bangerth <bangerth@math.tamu.edu>
Fri, 28 Aug 1998 09:28:07 +0000 (09:28 +0000)
committerWolfgang Bangerth <bangerth@math.tamu.edu>
Fri, 28 Aug 1998 09:28:07 +0000 (09:28 +0000)
git-svn-id: https://svn.dealii.org/trunk@533 0785d39b-7218-0410-832d-ea1e28bc413d

deal.II/lac/source/Makefile
deal.II/lac/source/dfmatrix.cc

index a412869586711108b3a58810282b78a2f536f408..74be0be348915f334c8148ddb31a32c5be69ac00 100644 (file)
@@ -26,11 +26,9 @@ h-files  = $(wildcard ../include/*/*.h)
 
 %.go : %.cc Makefile
        @echo ============================ Compiling with debugging information:   $<
-       @echo $(CXX) ... -c $< -o $@
        @$(CXX) $(CXXFLAGS.g) -c $< -o $@
 %.o : %.cc Makefile
        @echo ============================ Compiling with optimization:   $<
-       @echo $(CXX) ... -c $< -o $@
        @$(CXX) $(CXXFLAGS) -c $< -o $@
 
 
index f90ee9eec4334e3d0cfca5ebc0209835b5b6f273..35591495f3599683d89e5120e89fde68e166dd1c 100644 (file)
@@ -395,7 +395,7 @@ void dFMatrix::forward (dVector& dst, const dVector& src) const
   Assert(src.size() == n(), ExcDimensionMismatch(src.size(), n()));
 
   unsigned int i,j;
-  unsigned int nu = MIN(m(),n());
+  unsigned int nu = (m()<n() ? m() : n());
   double s;
   for (i=0; i<nu; ++i)
     {
@@ -412,7 +412,7 @@ void dFMatrix::backward (dVector& dst, const dVector& src) const
   Assert(src.size() == n(), ExcDimensionMismatch(src.size(), n()));
 
   unsigned int j;
-  unsigned int nu = MIN(m(),n());
+  unsigned int nu = (m()<n() ? m() : n());
   double s;
   for (int i=nu-1; i>=0; --i)
     {

In the beginning the Universe was created. This has made a lot of people very angry and has been widely regarded as a bad move.

Douglas Adams


Typeset in Trocchi and Trocchi Bold Sans Serif.