@@ -35,50 +35,6 @@ namespace libMesh
3535// TypeTensor<T> class member functions
3636
3737
38- template < typename T >
39- void TypeTensor < T > ::print (std ::ostream & os ) const
40- {
41- #if LIBMESH_DIM == 1
42-
43- os << "x=" << (* this )(0 ,0 ) << std ::endl ;
44-
45- #endif
46- #if LIBMESH_DIM == 2
47-
48- os << "(xx,xy)=("
49- << std ::setw (8 ) << (* this )(0 ,0 ) << ", "
50- << std ::setw (8 ) << (* this )(0 ,1 ) << ")"
51- << std ::endl ;
52- os << "(yx,yy)=("
53- << std ::setw (8 ) << (* this )(1 ,0 ) << ", "
54- << std ::setw (8 ) << (* this )(1 ,1 ) << ")"
55- << std ::endl ;
56-
57- #endif
58- #if LIBMESH_DIM == 3
59-
60- os << "(xx,xy,xz)=("
61- << std ::setw (8 ) << (* this )(0 ,0 ) << ", "
62- << std ::setw (8 ) << (* this )(0 ,1 ) << ", "
63- << std ::setw (8 ) << (* this )(0 ,2 ) << ")"
64- << std ::endl ;
65- os << "(yx,yy,yz)=("
66- << std ::setw (8 ) << (* this )(1 ,0 ) << ", "
67- << std ::setw (8 ) << (* this )(1 ,1 ) << ", "
68- << std ::setw (8 ) << (* this )(1 ,2 ) << ")"
69- << std ::endl ;
70- os << "(zx,zy,zz)=("
71- << std ::setw (8 ) << (* this )(2 ,0 ) << ", "
72- << std ::setw (8 ) << (* this )(2 ,1 ) << ", "
73- << std ::setw (8 ) << (* this )(2 ,2 ) << ")"
74- << std ::endl ;
75- #endif
76- }
77-
78-
79-
80-
81-
8238template < typename T >
8339void TypeTensor < T > ::write_unformatted (std ::ostream & out_stream ,
8440 const bool newline ) const
0 commit comments