Notes: - major and minor bug fixes - new meta templated functions for matrix operations for product(transpose(M), M), product(M, transpose(M)) and transpose(product(M,M)), namely MtM_product(), MMt_product as well as productTransposed(). - productTranspose(M,V) renamed to Mtx_product(). In this function is a return dimension bug removed (working for non- square matrizes too now). - Therefore, old productTransposed() functions doesn't have the old meaning any more! - a matrix expression can be transposed too. - new functions and operators for products of expression of matrizes and vectors added - chaining of this should work now. - better support for non-square matrizes and non-square matrix-matrix and matexi-vector functions/operations. - regression test improved and more tests added. - file and directory structure extended.
Changes: 2003-05-25 17:11 opetzold * configure.ac: release 1.1.0 tagged and updated. 2003-05-25 11:34 opetzold * include/tvmet/VectorFunctions.h: doxygen correctness on norm1/norm2 doc 2003-05-25 11:30 opetzold * regression/TestMathOps.h: regression for norm1/2 rewritten. 2003-05-25 11:30 opetzold * include/tvmet/: VectorFunctions.h, meta/Vector.h: new function norm1 added. 2003-05-25 10:15 opetzold * regression/Makefile.am: forgotten regression test on TestMathOps.{cc|h} added. 2003-05-25 09:49 opetzold * regression/TestMathOps.h: tests on vector norm changed due to name changing. 2003-05-25 09:48 opetzold * include/tvmet/VectorFunctions.h: naming convention changed: norm2 is the l2 form of vector norm, prior name was norm; old norm2 removed since it was the l2 norm squared. 2003-05-24 14:46 opetzold * configure.ac: icc CXXFLAGS warnings changed to avoid remarks 2003-05-24 12:20 opetzold * doc/usage.dox: chapter about row and col wise access on matrizes added. 2003-05-24 11:49 opetzold * doc/Makefile.am: CXXFLAGS changed to avoid icc compiler remarks 2003-05-24 11:48 opetzold * doc/: faq.dox, intro.dox, notes.dox, usage.dox: some small addtions and corrections 2003-05-24 11:20 opetzold * doc/usage.dox: some small addtions and corrections 2003-05-24 11:02 opetzold * doc/intro.dox: some small addtions and corrections 2003-05-24 10:19 opetzold * tvmet-config.in: very old name of tvmet replaced (in the begining the name was tvm - unfortunally these name was reserved on sourceforge). 2003-05-24 10:14 opetzold * NEWS: some news added for the upcoming rel. 1.1.0 2003-05-24 10:08 opetzold * include/tvmet/: MatrixFunctions.h, VectorFunctions.h, xpr/MatrixFunctions.h, xpr/VectorFunctions.h: binary functions and operators added for fn/op(POD, Matrix<>||Vector<>) resp. fn/op(POD, XprMatrix<>||XprVector<>) for the rare case of evaluting expressions like eval(1 == matrix) instead of eval(matrix == 1). 2003-05-24 09:45 opetzold * include/tvmet/VectorFunctions.h: doxygen header doc corrected 2003-05-24 09:44 opetzold * regression/main.cc: removed some old code, error return value removed since it does disturb the make dist process. 2003-05-24 09:31 opetzold * regression/: Makefile.am, SelfTest.cc, SelfTest.h, TestConstruction.cc, TestConstruction.h, TestDimension.cc, TestDimension.h, TestElementWise.h, TestEval.cc, TestEval.h, TestMathOps.cc, TestMathOps.h, TestMatrixFunctions.cc, TestMatrixFunctions.h, TestSTL.cc, TestSTL.h, TestUnFunc.cc, TestUnFunc.h, TestVectorFunctions.cc, TestVectorFunctions.h, TestXpr.cc, TestXpr.h, main.cc: regression test rewritten/extended. We use cppunits factory facility to compile each unit test in a separate cpp file. New files added with news tests 2003-05-24 09:06 opetzold * include/tvmet/MatrixFunctions.h: product() functions using temporaries rewritten to allow using compiler's return value optimizing - doesn't change things on gcc-3.2 failed regression tests on product/operator*(XprMatrix<int>, XprVector<int>) 2003-05-24 08:57 opetzold * include/tvmet/xpr/MatrixFunctions.h: product() functions using temporaries rewritten to allow using compiler's return value optimizing - doesn't change things on gcc-3.2 failed regression tests on product/operator*(XprMatrix<int>, XprVector<int>) 2003-05-24 08:34 opetzold * include/tvmet/MatrixEval.h: cosmetic changes 2003-05-24 08:02 opetzold * include/tvmet/MatrixOperators.h: cosmetic changes 2003-05-24 08:00 opetzold * include/tvmet/MatrixOperators.h: operator+,-,== etc. corrected to allow operations on non-square matrizes too. 2003-05-18 19:40 opetzold * include/tvmet/VectorFunctions.h: new function product(Vector, Vector) added - same as operator*(Vector,Vector); cosmetic changes 2003-05-18 19:37 opetzold * include/tvmet/: Matrix.h, Vector.h: cast to std::size_t for iterator concept constructors runtime check. 2003-05-18 18:04 opetzold * include/tvmet/xpr/ProductTransposed.h: file added 2003-05-18 16:04 opetzold * regression/: TestBitOps.cc, TestBitOps.h: removed, since they doesn't contain any test 2003-05-18 12:59 opetzold * doc/usage.dox: chapter about Construction and Initializing extended for construction on iterators. 2003-05-18 12:58 opetzold * include/tvmet/Matrix.h: Some doxygen notes about construction on iterators added. Further more runtime condition added for constructor on iterators. 2003-05-18 12:57 opetzold * include/tvmet/Vector.h: Some doxygen notes about construction on iterators added. 2003-05-17 21:58 opetzold * doc/: faq.dox, intro.dox, notes.dox, usage.dox: doc updates 2003-05-17 21:45 opetzold * NEWS: updated for the upcoming release 2003-05-17 21:44 opetzold * include/tvmet/: MatrixFunctions.h, MatrixOperators.h: doxygen headers corrected. 2003-05-17 19:28 opetzold * include/tvmet/: MatrixFunctions.h, meta/Gemmt.h, meta/Makefile.am, xpr/MMtProduct.h, xpr/Makefile.am, xpr/Xpr.h: new function added: MMt_product for the product of MM^T. 2003-05-17 16:38 opetzold * include/tvmet/MatrixOperators.h: new function operator*(Matrix<>,XprMatrix<>) added. 2003-05-17 16:33 opetzold * include/tvmet/MatrixFunctions.h: new function product(Matrix<>,XprMatrix<>) added. 2003-05-17 16:05 opetzold * include/tvmet/: MatrixFunctions.h, xpr/MMProductTransposed.h, xpr/Makefile.am, xpr/Xpr.h: function productTransposed(Matrix<>,Matrix<>) added, also a new expression Xpr 2003-05-17 15:53 opetzold * include/tvmet/MatrixFunctions.h, regression/TestMathOps.h: productTransposed(Matrix<>,Vector<>) renamed to Mtx_product; productTransposed renamed to MtM_product(Matrix<>,Matrix<>) to avoid confusions a name conflics with future functions 2003-05-17 15:13 opetzold * include/tvmet/MatrixFunctions.h: new function transpose(XprMatrix<>) added. 2003-05-17 11:04 opetzold * include/tvmet/MatrixOperators.h: doxygen doc corrected for operator*(Xprmatrix<>,Vector<>) 2003-05-17 11:03 opetzold * include/tvmet/MatrixOperators.h: missing operator added: operator*(XprMatrix<>, Matrix<>) 2003-05-17 10:58 opetzold * include/tvmet/MatrixFunctions.h: missing function added: product(XprMatrix<>, Matrix<>) 2003-05-17 10:34 opetzold * include/tvmet/VectorOperators.h: cosmetic changes 2003-05-17 10:32 opetzold * include/tvmet/: MatrixOperators.h, xpr/MatrixOperators.h, xpr/VectorOperators.h: undo: all operator?(POD,...) restored since eval is using those - thanks to regression tests... 2003-05-17 10:12 opetzold * include/tvmet/MatrixOperators.h: cosmetic changes; operator?(POD, XprMatrix<>) removed since isn't usefull 2003-05-17 09:53 opetzold * include/tvmet/xpr/VectorOperators.h: operator?(POD, XprVector<>) removed since isn't usefull 2003-05-17 09:50 opetzold * include/tvmet/xpr/MatrixOperators.h: cosmetic changes; operator?(POD, XprMatrix<>) removed since isn't usefull 2003-05-13 22:20 opetzold * include/tvmet/VectorFunctions.h: some cosmetic changes; functions with func(POD, Matrix) removed 2003-05-13 22:16 opetzold * include/tvmet/MatrixFunctions.h: some cosmetic changes; functions with func(POD, Matrix) removed 2003-05-13 22:14 opetzold * include/tvmet/xpr/MatrixFunctions.h: some cosmetic changes 2003-05-13 22:05 opetzold * include/tvmet/xpr/Makefile.am: header VectorFunctions.h added 2003-05-13 22:04 opetzold * include/tvmet/xpr/VectorFunctions.h: added, holds functions of XprVector 2003-05-13 22:03 opetzold * include/tvmet/xpr/: Functions.h, MatrixFunctions.h: functions for XprMatrizes and XprVectors moved to sperate files. 2003-05-13 21:17 opetzold * include/tvmet/xpr/MatrixFunctions.h: used temporary renamed 2003-05-12 20:22 opetzold * doc/usage.dox: usage about cleared matrix and vector added. 2003-05-12 20:13 opetzold * include/tvmet/MatrixOperators.h: doxygen function header corrected 2003-05-12 20:11 opetzold * regression/TestXpr.h: spelling erros corrected 2003-05-12 20:09 opetzold * include/tvmet/MatrixFunctions.h: product(XprMatrix<>, Vector<>) doxygen docs corrected and expanded, used temporary renamed 2003-05-11 21:46 opetzold * include/tvmet/MatrixFunctions.h: productTransposed(M,V) corrected for non square matrizes 2003-05-11 21:44 opetzold * include/tvmet/MatrixFunctions.h: Header guard corrected 2003-05-11 20:57 opetzold * regression/TestMathOps.h: MatrixTransposedMatrix() regression added. 2003-05-11 20:07 opetzold * include/tvmet/: MatrixFunctions.h, xpr/Xpr.h: new function productTransposed(M1,M2) for transposed(Matrix)*Matrix product added 2003-05-11 20:06 opetzold * include/tvmet/: meta/Makefile.am, xpr/Makefile.am: meta/Gemtm.h and xpr/MtMProduct.h added 2003-05-11 20:03 opetzold * include/tvmet/: meta/Gemtm.h, xpr/MtMProduct.h: created for transposed(Matrix)*Matrix product 2003-05-11 19:50 opetzold * include/tvmet/: xpr/MMProduct.h, MatrixFunctions.h: cosmetic changes 2003-05-11 09:50 opetzold * doc/notes.dox: section about MMV operations added 2003-05-11 09:49 opetzold * doc/faq.dox: section about missing MMV operations removed, since it is absolete 2003-05-11 09:25 opetzold * regression/Makefile.am: target regression renamed to driver, so avoid name confusion 2003-04-23 07:40 opetzold * configure.ac: release 1.0.1 created and tagged 2003-04-17 21:34 opetzold * NEWS: news added for rel-1-0-1 2003-04-17 21:31 opetzold * THANKS: email adresses removed, new add 2003-04-17 21:23 opetzold * tvmet.m4: bug removed: using --cxxflags acording to tvmet-config now 2003-04-08 21:05 opetzold * doc/: benchmark.dox, build.dox, compiler.dox: doxygen's url corrected 2003-04-08 20:58 opetzold * NEWS: News for release v1.0.0 added 2003-04-07 21:48 opetzold * configure.ac: release 1.0.0 created and tagged 2003-04-03 21:42 opetzold * include/tvmet/xpr/MMProduct.h: doxygen header corrected 2003-04-03 21:09 opetzold * include/tvmet/CommaInitializer.h: mamber naming convention of member iter_ to m_iter corrected 2003-04-03 21:03 opetzold * include/tvmet/VectorFunctions.h: doxygen docu norm and normalize formula index corrected 2003-03-27 17:44 opetzold * include/tvmet/xpr/MatrixOperators.h: doxygen class docu corrected 2003-03-27 17:40 opetzold * include/tvmet/xpr/: MMProduct.h, MVProduct.h, MatrixOperators.h: doxygen class docu corrected 2003-03-24 21:39 opetzold * doc/: build.dox, compiler.dox: all doxygen hypertext links are working now 2003-03-24 21:26 opetzold * include/tvmet/: MatrixFunctions.h, MatrixOperators.h, VectorFunctions.h: doxygen group spelling error corrected 2003-03-24 21:23 opetzold * include/tvmet/MatrixOperators.h: operator*(XprMatrix, Vector) added 2003-03-24 21:20 opetzold * include/tvmet/MatrixFunctions.h: product(XprMatrix, Vector) added 2003-03-24 21:17 opetzold * regression/TestXpr.h: Test for Xpr operators added 2003-03-24 21:15 opetzold * include/tvmet/xpr/: Functions.h, Makefile.am, MatrixFunctions.h, MatrixOperators.h, Xpr.h: product(XprMatrix, XprVector) added; moved with product(XprMatrix,XprMatrix) to new header MatrixFunctions.h 2003-03-24 20:48 opetzold * Makefile.am: target ChangeLog does check for cvs2log too 2003-03-22 16:52 opetzold * include/tvmet/config/: config-kcc.h, config-pgi.h: warning about compiler missing optimizations removed 2003-03-22 16:35 opetzold * doc/compiler.dox: gcc compiler notes regarding to regression test link corrected 2003-03-22 16:07 opetzold * doc/: compiler.dox, faq.dox: Updated compiler support, notes to gcc failed regression test with int's product(Xprmatrix, XprVector> 2003-03-22 15:42 opetzold * regression/TestXpr.h: Regression for product(XprMatrix<>, XprMatrix<>) as well as product(XprMatrix<>, XprVector<>) added 2003-03-22 15:11 opetzold * regression/: TestUnFunc.cc, TestUnFunc.h: Test for Abs added in header, Abs() unused temporaries removed 2003-03-22 15:09 opetzold * regression/main.cc: doxygen correctness increased 2003-03-22 14:45 opetzold * configure.ac: icc compiler warning turned on (-Wall) 2003-03-22 14:42 opetzold * regression/Makefile.am: CXXFLAGS removed since we didn't distuingish between the compilers here 2003-03-22 14:35 opetzold * include/tvmet/config/config-icc.h: warning about icc missing optimizations removed 2003-03-22 14:32 opetzold * examples/: cmm.cc, cmv.cc: std::complex ambiguous removed; icc does compile now 2003-03-22 14:27 opetzold * include/tvmet/: MatrixEval.h, MatrixOperators.h, VectorEval.h, VectorOperators.h: forwared std::complex<T> corrected, icc doesn't confused any more 2003-03-22 13:46 opetzold * include/tvmet/util/General.h: Gemv algorithm initialized by zero, to much problems due to the need of a cleaned output vector 2003-03-20 21:39 opetzold * include/tvmet/xpr/Functions.h: Vector forwared, header does compiler now. 2003-03-20 21:17 opetzold * include/tvmet/xpr/Functions.h: product(XprMatrix<>, XprVector<>) added 2003-03-20 20:57 opetzold * doc/works.dox: updated, product(XprA, XprB) does exist 2003-03-20 20:47 opetzold * include/tvmet/xpr/: BinOperator.h, ConstRef.h, Eval.h, Literal.h, MMProduct.h, MVProduct.h, Makefile.am, Matrix.h, MatrixOperators.h, MatrixTranspose.h, Null.h, UnOperator.h, Vector.h, VectorOperators.h, Xpr.h: Xpr headers splitted to smaller 2003-03-20 20:03 opetzold * configure.ac, include/tvmet/Makefile.am, include/tvmet/Matrix.h, include/tvmet/Vector.h, include/tvmet/Xpr.h, include/tvmet/XprFunctions.h, include/tvmet/XprMatrixOperators.h, include/tvmet/XprVectorOperators.h, include/tvmet/xpr/Functions.h, include/tvmet/xpr/Makefile.am, include/tvmet/xpr/MatrixOperators.h, include/tvmet/xpr/VectorOperators.h, include/tvmet/xpr/Xpr.h: Xpr stuff moved to sub directory 2003-03-17 18:28 opetzold * doc/dox_operators.cc: op(XprMatrix,XprMatrix) doxygen header generating corrected, less doxygen warnings now 2003-03-17 18:12 opetzold * include/tvmet/MatrixFunctions.h: diag(Matrix<T, Sz, Sz>& m) doxygen header corrected 2003-03-07 07:43 opetzold * Makefile.am: rpm-dist target does copy rpms from users home 2003-03-07 07:40 opetzold * doc/usage.dox: spell error corrected 2003-03-01 11:50 opetzold * NEWS: about delayed benchmark 2003-03-01 11:48 opetzold * doc/: bench_daxpy.png, bench_matrix_matrix_product.png, bench_matrix_vector_product.png, bench_vector_add.png, bench_vector_inner_product.png: undo: benchmark test. Now we have the pictures 'Benchmarkk not performed' 2003-03-01 11:37 opetzold * doc/benchmark.dox: benchmark delayed, it takes to much time, even if Laurent Plagne did the work 2003-03-01 11:27 opetzold * benchmark/Makefile.am: results PNG files aren't copied anymore to the docs. New target copy_results added for this purpose 2003-03-01 11:25 opetzold * benchmark/benchmark.m: ranges adapted to P4/2400MHz 2003-03-01 11:07 opetzold * configure.ac: release counter incremented to 0.9.0 2003-03-01 11:05 opetzold * NEWS: news added 2003-03-01 11:05 opetzold * tests/t.cc: modified for feature check 2003-03-01 10:59 opetzold * include/tvmet/XprMatrixOperators.h: operator*(Xprmatrix<>, XprMatrix<>) added 2003-03-01 10:58 opetzold * include/tvmet/XprFunctions.h: product(Xprmatrix<>, XprMatrix<>) added 2003-03-01 09:42 opetzold * NEWS: this file is used now, for short messages about changes on releases 2003-03-01 09:32 opetzold * doc/faq.dox: FAQ about 'call of overloaded product() ... Compiler Error' added 2003-03-01 09:32 opetzold * doc/: bench_daxpy.png, bench_matrix_matrix_product.png, bench_matrix_vector_product.png, bench_vector_add.png, bench_vector_inner_product.png: benchmark test 2003-03-01 09:30 opetzold * regression/: Makefile.am, TestElementWise.h, main.cc: elementwise operations for regressions added 2003-03-01 08:45 opetzold * include/tvmet/MatrixOperators.h: TVMET_BINARY_OPERATOR(fcnl_Mul, *) removed. It can be used due to the call of overloaded operator*. A note is written about that inside. 2003-03-01 08:14 opetzold * regression/TestMathOps.h: elementwise operations removed 2003-03-01 08:08 opetzold * regression/: TestBitOps.cc, TestBitOps.h, TestConstruction.h, TestMathOps.h, TestSTL.h, TestUnFunc.cc, TestUnFunc.h, TestXpr.h, main.cc: LGPL header and cvs keyword added 2003-03-01 07:56 opetzold * benchmark/benchmark.m: terminal settings for jpeg removed 2003-03-01 07:50 opetzold * benchmark/blitz.h: blitz-6.0 has changed some headers, corrected header include. Anyway, we have to use release v0.6 of blitz++ now. 2003-02-20 22:15 opetzold * Makefile.am: target ChangeLog really added, dist-hook depends on it 2003-02-20 22:09 opetzold * Makefile.am: cvs2log added to dist-hook, to create the ChangeLog from cvs to dist 2003-02-20 21:56 opetzold * configure.ac, configure.in: configure.in renamed to configure.ac to be conform to autoconf 2.5x and automake 1.6x 2003-02-20 21:54 opetzold * LICENSE, Makefile.am, THANKS, tvmet.spec.in, doc/faq.dox, doc/license.dox: License Addendum to the LGPL 2003-02-12 20:11 opetzold * ChangeLog, ChangeLog.1, Makefile.am: old ChangeLog renamed to ChangeLog.1, using cvs logs for ChangeLog now 2003-02-12 20:08 opetzold * ChangeLog: the last ChangeLog entry 2003-02-12 20:04 opetzold * examples/Makefile.am: example target diag added 2003-02-12 20:03 opetzold * examples/diag.cc: example for diag added 2003-02-12 20:03 opetzold * regression/TestMathOps.h: TestMathOps<T>::MatrixDiagVector() added 2003-02-12 20:02 opetzold * include/tvmet/MatrixFunctions.h: diag(Matrix<T, Sz, Sz>& m) added 2003-02-12 20:02 opetzold * include/tvmet/Matrix.h: MatrixDiagVectorReference added 2003-02-10 19:09 opetzold * ChangeLog: ChangeLog 2003-02-10 19:08 opetzold * tvmet.spec.in: target tvmet-doc-xxx removed, it's inside the standard rpm package 2003-02-10 19:06 opetzold * Makefile.am: rpm package is using bz2 archive now 2003-02-10 19:05 opetzold * configure.in: AM_CPPUNIT uncommented 2003-02-09 16:39 opetzold * configure.in: release incremented to 0.8.0 2003-02-09 16:34 opetzold * ChangeLog: ChangeLog 2003-02-09 16:28 opetzold * ChangeLog: Makefile.am 2003-02-09 16:28 opetzold * Makefile.am: target doc-dist added to dist-hook, also doc's ps/pdf manuals moved into dist dir 2003-02-09 16:13 opetzold * doc/compiler.dox: HTML li environment removed to avoid problems with latex ref manual 2003-02-09 15:59 opetzold * Makefile.am, configure.in: parts adapted to new syntax style of autoconf 2.5x and automake 1.6x 2003-02-09 13:11 opetzold * configure.in: version literal expl. written (todo: fix the problem) 2003-02-09 13:07 opetzold * doc/Makefile.am: better progress printing on doc install target 2003-02-09 13:05 opetzold * Makefile.am: bug fixed: target rpm using @echo inside @it loop 2003-02-09 12:44 opetzold * ChangeLog: ChangeLog 2003-02-09 12:41 opetzold * include/tvmet/util/Timer.h: cpp define RUSAGE replaced with config.h's defines 2003-02-09 12:28 opetzold * ChangeLog: ChangeLog 2003-02-09 12:25 opetzold * configure.in: better check, using autoconf-2.5x features - not really working\! 2003-02-09 12:23 opetzold * doc/Doxyfile.in: INPUT points to @top_srcdir@/include/@PACKAGE@, therefore I can apply other lib's includes too, e.g. for benchmark 2003-02-09 00:39 opetzold * THANKS, doc/doxygen-warning: doc/doxygen-warning 2003-02-09 00:14 opetzold * benchmark/BenchImpl.h, benchmark/BenchInfo.h, benchmark/Benchmark.h, benchmark/BenchmarkBase.h, benchmark/Interface.h, benchmark/blitz.cc, benchmark/blitz.h, benchmark/mtl.cc, benchmark/mtl.h, benchmark/peak.cc, benchmark/peak.h, benchmark/stl.cc, benchmark/stl.h, benchmark/tvmet.cc, benchmark/tvmet.h, benchmark/ublas.cc, benchmark/ublas.h, doc/Util.h, doc/dox_functions.cc, doc/dox_operators.cc, include/tvmet/BinaryFunctionals.h, include/tvmet/CommaInitializer.h, include/tvmet/CompileTimeError.h, include/tvmet/Extremum.h, include/tvmet/Functional.h, include/tvmet/Matrix.h, include/tvmet/MatrixEval.h, include/tvmet/MatrixFunctions.h, include/tvmet/MatrixImpl.h, include/tvmet/MatrixOperators.h, include/tvmet/NumericTraits.h, include/tvmet/RunTimeError.h, include/tvmet/TvmetBase.h, include/tvmet/TypePromotion.h, include/tvmet/UnaryFunctionals.h, include/tvmet/Vector.h, include/tvmet/VectorEval.h, include/tvmet/VectorFunctions.h, include/tvmet/VectorImpl.h, include/tvmet/VectorOperators.h, include/tvmet/Xpr.h, include/tvmet/XprFunctions.h, include/tvmet/XprMatrixOperators.h, include/tvmet/XprVectorOperators.h, include/tvmet/tvmet.h, include/tvmet/config/config-gcc.h, include/tvmet/config/config-icc.h, include/tvmet/config/config-kcc.h, include/tvmet/config/config-pgi.h, include/tvmet/meta/Gemm.h, include/tvmet/meta/Gemv.h, include/tvmet/meta/Matrix.h, include/tvmet/meta/Vector.h, include/tvmet/util/General.h: Copyright notize is up to date now 2003-02-09 00:08 opetzold * config/license, ChangeLog: config/license removed 2003-02-09 00:03 opetzold * Makefile.am, aclocal.m4, configure, configure.in, config/Makefile.am, config/aclocal.m4, config/config.guess, config/config.h.in, config/config.sub, config/depcomp, config/install-sh, config/missing, config/mkinstalldirs, config/stamp-h.in, doc/doxygen-warning: aclocal, autoheader, autoconf and automake generated files removed from repository 2003-02-08 23:16 opetzold * include/tvmet/: meta/Makefile.am, util/Makefile.am: bug fixed: EXTRA_HEADERS have had paths 2003-02-08 23:12 opetzold * configure.in: version 0.7.6 released 2003-02-08 23:07 opetzold * ChangeLog, ChangeLog: ChangeLog 2003-02-08 23:00 opetzold * ChangeLog: project changes added 2003-02-08 22:57 opetzold * benchmark/benchmark.log: benchmark/benchmark.log removed from repository 2003-02-08 22:49 opetzold * doc/: bench_daxpy.png, bench_matrix_matrix_product.png, bench_matrix_vector_product.png, bench_vector_add.png, bench_vector_inner_product.png: bench-png's added with 'empty' results 2003-02-08 22:19 opetzold * benchmark/ev.m: ev.m deleted from repository 2003-02-08 22:17 opetzold * doc/: changelog.dox, credits.dox, functions.dox, install.dox, operators.dox: generated docs removed from repository 2003-02-08 22:12 opetzold * benchmark/benchmark.m: cvs Id keyword corrected 2003-02-08 22:11 opetzold * benchmark/peak.ok.m: matlab files peak.ok.m removed from repository 2003-02-08 22:10 opetzold * doc/: bench_daxpy.png, bench_matrix_matrix_product.png, bench_matrix_vector_product.png, bench_vector_add.png, bench_vector_inner_product.png: benchmark result png removed from repository 2003-02-08 22:04 opetzold * ChangeLog, Makefile.in, configure, configure.in, benchmark/Makefile.in, config/Makefile.in, doc/Makefile.in, doc/changelog.dox, doc/doxygen-warning, examples/Makefile.in, include/Makefile.in, include/tvmet/Makefile.in, include/tvmet/config/Makefile.in, regression/Makefile.in, tests/Makefile.in: Makefile.in's removed from repository 2003-02-08 21:59 opetzold * doc/Makefile.am: bug fixed: tgz dist installs the docs now 2003-02-08 21:53 opetzold * include/tvmet/: Makefile.am, meta/Makefile.am, util/Makefile.am: bug fixed: tgz dist install target doesn't install meta and util directory 2003-02-08 21:02 opetzold * ChangeLog: version-0.7.5 2003-02-08 20:51 opetzold * ChangeLog: corrected: Id keyword was expanded by cvs 2003-02-08 20:49 opetzold * ChangeLog, benchmark/BenchImpl.h, benchmark/BenchInfo.h, benchmark/Benchmark.h, benchmark/BenchmarkBase.h, benchmark/Interface.h, benchmark/blitz.cc, benchmark/blitz.h, benchmark/mtl.cc, benchmark/mtl.h, benchmark/peak.cc, benchmark/peak.h, benchmark/stl.cc, benchmark/stl.h, benchmark/tvmet.cc, benchmark/tvmet.h, benchmark/ublas.cc, benchmark/ublas.h, doc/Util.h, doc/dox_functions.cc, doc/dox_operators.cc, include/tvmet/BinaryFunctionals.h, include/tvmet/CommaInitializer.h, include/tvmet/CompileTimeError.h, include/tvmet/Extremum.h, include/tvmet/Functional.h, include/tvmet/Matrix.h, include/tvmet/MatrixEval.h, include/tvmet/MatrixFunctions.h, include/tvmet/MatrixImpl.h, include/tvmet/MatrixOperators.h, include/tvmet/NumericTraits.h, include/tvmet/RunTimeError.h, include/tvmet/TvmetBase.h, include/tvmet/TypePromotion.h, include/tvmet/UnaryFunctionals.h, include/tvmet/Vector.h, include/tvmet/VectorEval.h, include/tvmet/VectorFunctions.h, include/tvmet/VectorImpl.h, include/tvmet/VectorOperators.h, include/tvmet/Xpr.h, include/tvmet/XprFunctions.h, include/tvmet/XprMatrixOperators.h, include/tvmet/XprVectorOperators.h, include/tvmet/tvmet.h, include/tvmet/config/config-gcc.h, include/tvmet/config/config-icc.h, include/tvmet/config/config-kcc.h, include/tvmet/config/config-pgi.h, include/tvmet/meta/Gemm.h, include/tvmet/meta/Gemv.h, include/tvmet/meta/Matrix.h, include/tvmet/meta/Vector.h, include/tvmet/util/General.h, include/tvmet/util/Timer.h: header cvs Id keyword corrected, also missed header guards TVMET prefix added 2003-02-08 20:32 opetzold * AUTHORS, COPYING, ChangeLog, INSTALL, Makefile.am, Makefile.in, NEWS, README, THANKS, aclocal.m4, autogen.sh, configure, configure.in, tvmet-config.1, tvmet-config.in, tvmet.m4, tvmet.spec.in, benchmark/BenchImpl.h, benchmark/BenchInfo.h, benchmark/Benchmark.h, benchmark/BenchmarkBase.h, benchmark/Interface.h, benchmark/Makefile.am, benchmark/Makefile.in, benchmark/benchmark.log, benchmark/benchmark.m, benchmark/blitz.cc, benchmark/blitz.h, benchmark/ev.m, benchmark/mtl.cc, benchmark/mtl.h, benchmark/peak.cc, benchmark/peak.h, benchmark/peak.ok.m, benchmark/stl.cc, benchmark/stl.h, benchmark/tvmet.cc, benchmark/tvmet.h, benchmark/ublas.cc, benchmark/ublas.h, config/Makefile.am, config/Makefile.in, config/ac_c_long_long.m4, config/ac_create_prefix_config_h.m4, config/ac_cxx_have_complex.m4, config/ac_cxx_have_complex_math.m4, config/ac_cxx_have_ieee_math.m4, config/ac_cxx_have_mutable.m4, config/ac_cxx_have_namespaces.m4, config/ac_cxx_have_sysv_math.m4, config/ac_cxx_partial_specialization.m4, config/ac_cxx_restrict.m4, config/ac_cxx_typename.m4, config/ac_prog_cxx_intel.m4, config/ac_prog_cxx_kai.m4, config/ac_prog_cxx_pgi.m4, config/ac_prog_doxygen.m4, config/aclocal.m4, config/config.guess, config/config.h.in, config/config.sub, config/depcomp, config/install-sh, config/license, config/missing, config/mkinstalldirs, config/stamp-h.in, doc/Doxyfile.in, doc/Makefile.am, doc/Makefile.in, doc/Util.h, doc/bench_daxpy.png, doc/bench_matrix_matrix_product.png, doc/bench_matrix_vector_product.png, doc/bench_vector_add.png, doc/bench_vector_inner_product.png, doc/benchmark.dox, doc/build.dox, doc/changelog.dox, doc/compiler.dox, doc/credits.dox, doc/dox_functions.cc, doc/dox_operators.cc, doc/doxygen-warning, doc/faq.dox, doc/footer.html, doc/functions.dox, doc/header.html, doc/install.dox, doc/intro.dox, doc/license.dox, doc/links.dox, doc/misc.dox, doc/notes.dox, doc/operator_tab.html, doc/operators.dox, doc/projects.dox, doc/sflogo.png, doc/tvmet.css, doc/usage.dox, doc/works.dox, examples/Makefile.am, examples/Makefile.in, examples/cmm.cc, examples/cmv.cc, examples/matrix_col.cc, examples/mm.cc, examples/mv.cc, examples/ray.cc, examples/xpr_print_m1.cc, examples/xpr_print_m2.cc, examples/xpr_print_m3.cc, examples/xpr_print_m4.cc, examples/xpr_print_mv1.cc, examples/xpr_print_mv2.cc, examples/xpr_print_v1.cc, examples/xpr_print_v2.cc, examples/xpr_print_v3.cc, examples/xpr_print_v4.cc, include/Makefile.am, include/Makefile.in, include/tvmet/BinaryFunctionals.h, include/tvmet/CommaInitializer.h, include/tvmet/CompileTimeError.h, include/tvmet/Extremum.h, include/tvmet/Functional.h, include/tvmet/Makefile.am, include/tvmet/Makefile.in, include/tvmet/Matrix.h, include/tvmet/MatrixEval.h, include/tvmet/MatrixFunctions.h, include/tvmet/MatrixImpl.h, include/tvmet/MatrixOperators.h, include/tvmet/NumericTraits.h, include/tvmet/RunTimeError.h, include/tvmet/TvmetBase.h, include/tvmet/TypePromotion.h, include/tvmet/UnaryFunctionals.h, include/tvmet/Vector.h, include/tvmet/VectorEval.h, include/tvmet/VectorFunctions.h, include/tvmet/VectorImpl.h, include/tvmet/VectorOperators.h, include/tvmet/Xpr.h, include/tvmet/XprFunctions.h, include/tvmet/XprMatrixOperators.h, include/tvmet/XprVectorOperators.h, include/tvmet/tvmet.h, include/tvmet/config/Makefile.am, include/tvmet/config/Makefile.in, include/tvmet/config/config-gcc.h, include/tvmet/config/config-icc.h, include/tvmet/config/config-kcc.h, include/tvmet/config/config-pgi.h, include/tvmet/meta/Gemm.h, include/tvmet/meta/Gemv.h, include/tvmet/meta/Matrix.h, include/tvmet/meta/Vector.h, include/tvmet/util/General.h, include/tvmet/util/Timer.h, regression/Makefile.am, regression/Makefile.in, regression/TestBitOps.cc, regression/TestBitOps.h, regression/TestConstruction.h, regression/TestMathOps.h, regression/TestSTL.h, regression/TestUnFunc.cc, regression/TestUnFunc.h, regression/TestXpr.h, regression/main.cc, tests/Makefile.am, tests/Makefile.in, tests/README, tests/mmv.cc, tests/swap.cc, tests/t.cc: Initial revision 2003-02-08 20:32 opetzold * AUTHORS, COPYING, ChangeLog, INSTALL, Makefile.am, Makefile.in, NEWS, README, THANKS, aclocal.m4, autogen.sh, configure, configure.in, tvmet-config.1, tvmet-config.in, tvmet.m4, tvmet.spec.in, benchmark/BenchImpl.h, benchmark/BenchInfo.h, benchmark/Benchmark.h, benchmark/BenchmarkBase.h, benchmark/Interface.h, benchmark/Makefile.am, benchmark/Makefile.in, benchmark/benchmark.log, benchmark/benchmark.m, benchmark/blitz.cc, benchmark/blitz.h, benchmark/ev.m, benchmark/mtl.cc, benchmark/mtl.h, benchmark/peak.cc, benchmark/peak.h, benchmark/peak.ok.m, benchmark/stl.cc, benchmark/stl.h, benchmark/tvmet.cc, benchmark/tvmet.h, benchmark/ublas.cc, benchmark/ublas.h, config/Makefile.am, config/Makefile.in, config/ac_c_long_long.m4, config/ac_create_prefix_config_h.m4, config/ac_cxx_have_complex.m4, config/ac_cxx_have_complex_math.m4, config/ac_cxx_have_ieee_math.m4, config/ac_cxx_have_mutable.m4, config/ac_cxx_have_namespaces.m4, config/ac_cxx_have_sysv_math.m4, config/ac_cxx_partial_specialization.m4, config/ac_cxx_restrict.m4, config/ac_cxx_typename.m4, config/ac_prog_cxx_intel.m4, config/ac_prog_cxx_kai.m4, config/ac_prog_cxx_pgi.m4, config/ac_prog_doxygen.m4, config/aclocal.m4, config/config.guess, config/config.h.in, config/config.sub, config/depcomp, config/install-sh, config/license, config/missing, config/mkinstalldirs, config/stamp-h.in, doc/Doxyfile.in, doc/Makefile.am, doc/Makefile.in, doc/Util.h, doc/bench_daxpy.png, doc/bench_matrix_matrix_product.png, doc/bench_matrix_vector_product.png, doc/bench_vector_add.png, doc/bench_vector_inner_product.png, doc/benchmark.dox, doc/build.dox, doc/changelog.dox, doc/compiler.dox, doc/credits.dox, doc/dox_functions.cc, doc/dox_operators.cc, doc/doxygen-warning, doc/faq.dox, doc/footer.html, doc/functions.dox, doc/header.html, doc/install.dox, doc/intro.dox, doc/license.dox, doc/links.dox, doc/misc.dox, doc/notes.dox, doc/operator_tab.html, doc/operators.dox, doc/projects.dox, doc/sflogo.png, doc/tvmet.css, doc/usage.dox, doc/works.dox, examples/Makefile.am, examples/Makefile.in, examples/cmm.cc, examples/cmv.cc, examples/matrix_col.cc, examples/mm.cc, examples/mv.cc, examples/ray.cc, examples/xpr_print_m1.cc, examples/xpr_print_m2.cc, examples/xpr_print_m3.cc, examples/xpr_print_m4.cc, examples/xpr_print_mv1.cc, examples/xpr_print_mv2.cc, examples/xpr_print_v1.cc, examples/xpr_print_v2.cc, examples/xpr_print_v3.cc, examples/xpr_print_v4.cc, include/Makefile.am, include/Makefile.in, include/tvmet/BinaryFunctionals.h, include/tvmet/CommaInitializer.h, include/tvmet/CompileTimeError.h, include/tvmet/Extremum.h, include/tvmet/Functional.h, include/tvmet/Makefile.am, include/tvmet/Makefile.in, include/tvmet/Matrix.h, include/tvmet/MatrixEval.h, include/tvmet/MatrixFunctions.h, include/tvmet/MatrixImpl.h, include/tvmet/MatrixOperators.h, include/tvmet/NumericTraits.h, include/tvmet/RunTimeError.h, include/tvmet/TvmetBase.h, include/tvmet/TypePromotion.h, include/tvmet/UnaryFunctionals.h, include/tvmet/Vector.h, include/tvmet/VectorEval.h, include/tvmet/VectorFunctions.h, include/tvmet/VectorImpl.h, include/tvmet/VectorOperators.h, include/tvmet/Xpr.h, include/tvmet/XprFunctions.h, include/tvmet/XprMatrixOperators.h, include/tvmet/XprVectorOperators.h, include/tvmet/tvmet.h, include/tvmet/config/Makefile.am, include/tvmet/config/Makefile.in, include/tvmet/config/config-gcc.h, include/tvmet/config/config-icc.h, include/tvmet/config/config-kcc.h, include/tvmet/config/config-pgi.h, include/tvmet/meta/Gemm.h, include/tvmet/meta/Gemv.h, include/tvmet/meta/Matrix.h, include/tvmet/meta/Vector.h, include/tvmet/util/General.h, include/tvmet/util/Timer.h, regression/Makefile.am, regression/Makefile.in, regression/TestBitOps.cc, regression/TestBitOps.h, regression/TestConstruction.h, regression/TestMathOps.h, regression/TestSTL.h, regression/TestUnFunc.cc, regression/TestUnFunc.h, regression/TestXpr.h, regression/main.cc, tests/Makefile.am, tests/Makefile.in, tests/README, tests/mmv.cc, tests/swap.cc, tests/t.cc: initial import to cvs
Copyright © 2009 Geeknet, Inc. All rights reserved. Terms of Use