ifeq ($(shell uname),SunOS)
CXX = /usr/local/gcc/gcc-2.8.1/bin/c++
endif
+
+
+%.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 $@
+
+
+
Implement coarsening of grids and update docs for that.
+Check all places where condensation of matrices/vectors and
+ application of boundary values takes place. I am not sure about
+ the right order in which they have to be applied, but in 2D there
+ is no difference since constrained dofs cannot be on the boundary.
+ Problems with the order will therefore not show up in 2D but may
+ become apparent in 3D, so keep this in mind for the implementation
+ of the 3D library.
+
dSMatrix &matrix,
dVector &solution,
dVector &right_hand_side);
+
+ /**
+ * Exception
+ */
+ DeclException2 (ExcDimensionsDontMatch,
+ int, int,
+ << "The dimensions " << arg1 << " and " << arg2
+ << " don't match.");
};
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