Commit 174b5ae3 authored by Fuchsi*'s avatar Fuchsi*
Browse files

removed references to and mentions of the replacement allocator

parent b9378b6b
Loading
Loading
Loading
Loading
+5 −0
Original line number Diff line number Diff line
@@ -2,6 +2,11 @@

Potentially breaking changes are marked with an exclamation point '!' at the begin of their description.

* 2019-03-?? v4.0.0
 * Added the HTTensor class for Hierarchical Tensor Decompositions with balanced trees.
 * ! Removed support for the replacement allocator.
 * ! Changed some Makefile configs for more flexibility. See the new config.mk.default file and update your own config.

* 2017-05-31 v3.0.1
 * Added TTNetwork::use_dense_representations() to convert all components to dense representation.
 * Exporting Tensor::dense_copy() and Tensor::sparse_copy() to python.
+0 −7
Original line number Diff line number Diff line
@@ -68,13 +68,6 @@ COMPILE_THREADS = 8 # Number of threads to use during link t
# DEBUG += -D XERUS_TEST_COVERAGE           # Enable coverage tests


# Xerus uses many small objects (Indices, vectors of dimensions etc.) for which the standard allocator
# is not very efficient. With the following option, an experimental replacement allocator will be
# included in the library, which will _globally_ replace the 'new' and 'delete' operators in your program.
# Note also, that the replacement allocator is not (yet) thread safe!
# DEBUG += -D XERUS_REPLACE_ALLOCATOR


# You can add all kind of debuging options. In the following are some examples
DEBUG += -g                            # Adds debug symbols
# DEBUG += -D _GLIBCXX_ASSERTIONS        # Activate GLIBCXX assertions
+0 −1
Original line number Diff line number Diff line
@@ -25,7 +25,6 @@
#pragma once

#include <stddef.h>
#include "misc/allocator.h"
#include "misc/standard.h"
#include "misc/namedLogger.h"
#include "tensorLogger.h"
+0 −1
Original line number Diff line number Diff line
@@ -37,7 +37,6 @@
#include "misc/timeMeasure.h"
#include "misc/performanceAnalysis.h"
#include "misc/exceptions.h"
#include "misc/allocator.h"
#include "misc/histogram.h"
#include "misc/sort.h"
#include "misc/math.h"