From c7846f2319698fa1f4a69a1196d524ebd49e2dca Mon Sep 17 00:00:00 2001 From: jiri Date: Wed, 21 Apr 2021 14:01:14 +0000 Subject: [PATCH] *** empty log message *** --- ChangeLog | 8 ++++++++ Makefile.am | 4 ++-- configure.ac | 2 +- 3 files changed, 11 insertions(+), 3 deletions(-) diff --git a/ChangeLog b/ChangeLog index e950f76..b19887f 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,11 @@ +11.06.2020 Nested commutators and Hausdorff formula applied to a ket vector using only matrix*vector operation +10.06.2020 File IO for bitvector +08.06.2020 Trick to access real and imag part of complex as l-value (pointer to real) +12.01.2020 RELEASE 0.10 +06.01.2020 minor fix in multiply_by_inverse +05.01.2020 quaternions and lightweight 3-dim vector and matrix class, compatible but independent from the remainder of LA, to be usable also on MCUs +30.12.2019 removed #define complex +13.11.2019 RELEASE 0.9 12.11.2019 fourindex_dense with nosymetry implemented 12.11.2019 fourindex.cc created for template specializations 12.11.2019 fourindex optional scaling and terminator diff --git a/Makefile.am b/Makefile.am index 7bebaf3..d8d30c0 100644 --- a/Makefile.am +++ b/Makefile.am @@ -1,6 +1,6 @@ lib_LTLIBRARIES = libla.la -include_HEADERS = fortran.h cuda_la.h auxstorage.h davidson.h laerror.h mat.h qsort.h vec.h bisection.h diis.h la.h noncblas.h smat.h bitvector.h fourindex.h la_traits.h nonclass.h sparsemat.h sparsesmat.h csrmat.h conjgrad.h gmres.h matexp.h permutation.h -libla_la_SOURCES = vec.cc mat.cc smat.cc sparsemat.cc sparsesmat.cc csrmat.cc laerror.cc noncblas.cc bitvector.cc strassen.cc nonclass.cc cuda_la.cc fourindex.cc +include_HEADERS = vecmat3.h quaternion.h fortran.h cuda_la.h auxstorage.h davidson.h laerror.h mat.h qsort.h vec.h bisection.h diis.h la.h noncblas.h smat.h bitvector.h fourindex.h la_traits.h nonclass.h sparsemat.h sparsesmat.h csrmat.h conjgrad.h gmres.h matexp.h permutation.h +libla_la_SOURCES = quaternion.cc vecmat3.cc vec.cc mat.cc smat.cc sparsemat.cc sparsesmat.cc csrmat.cc laerror.cc noncblas.cc bitvector.cc strassen.cc nonclass.cc cuda_la.cc fourindex.cc check_PROGRAMS = t test t_SOURCES = t.cc t2.cc test_SOURCES = test.cc diff --git a/configure.ac b/configure.ac index a479e13..1d42bc5 100644 --- a/configure.ac +++ b/configure.ac @@ -2,7 +2,7 @@ # Process this file with autoconf to produce a configure script. AC_PREREQ([2.63]) -AC_INIT([libla], [0.8], [jiri@pittnerovi.com]) +AC_INIT([libla], [0.10], [jiri@pittnerovi.com]) AC_CONFIG_HEADERS([config.h]) AC_CONFIG_MACRO_DIR([m4]) AM_PROG_AR