Navigation Menu

Skip to content

Commit

Permalink
rename CompressibleTensor 3
Browse files Browse the repository at this point in the history
  • Loading branch information
paulbkoch committed Jul 16, 2021
1 parent dda4a4b commit 57632e8
Show file tree
Hide file tree
Showing 11 changed files with 13 additions and 13 deletions.
2 changes: 1 addition & 1 deletion R/src/Makevars
Expand Up @@ -39,7 +39,7 @@ OBJECTS = \
$(NATIVEDIR)/RandomStream.o \
$(NATIVEDIR)/sampling.o \
$(NATIVEDIR)/SamplingSet.o \
$(NATIVEDIR)/SegmentedTensor.o \
$(NATIVEDIR)/CompressibleTensor.o \
$(NATIVEDIR)/SumHistogramBuckets.o \
$(NATIVEDIR)/TensorTotalsBuild.o \
$(NATIVEDIR)/common_c/common_c.o \
Expand Down
2 changes: 1 addition & 1 deletion R/src/Makevars.interpret
Expand Up @@ -39,7 +39,7 @@ OBJECTS = \
$(NATIVEDIR)/RandomStream.o \
$(NATIVEDIR)/sampling.o \
$(NATIVEDIR)/SamplingSet.o \
$(NATIVEDIR)/SegmentedTensor.o \
$(NATIVEDIR)/CompressibleTensor.o \
$(NATIVEDIR)/SumHistogramBuckets.o \
$(NATIVEDIR)/TensorTotalsBuild.o \
$(NATIVEDIR)/common_c/common_c.o \
Expand Down
2 changes: 1 addition & 1 deletion shared/ebm_native/BoosterCore.cpp
Expand Up @@ -19,7 +19,7 @@
#include "compute_accessors.hpp"

#include "RandomStream.hpp"
#include "SegmentedTensor.hpp"
#include "CompressibleTensor.hpp"
#include "ebm_stats.hpp"
// feature includes
#include "Feature.hpp"
Expand Down
2 changes: 1 addition & 1 deletion shared/ebm_native/BoosterCore.hpp
Expand Up @@ -17,7 +17,7 @@
#include "ebm_internal.hpp"

#include "RandomStream.hpp"
#include "SegmentedTensor.hpp"
#include "CompressibleTensor.hpp"
// feature includes
#include "Feature.hpp"
// FeatureGroup.h depends on FeatureInternal.h
Expand Down
2 changes: 1 addition & 1 deletion shared/ebm_native/BoosterShell.cpp
Expand Up @@ -13,7 +13,7 @@

#include "ebm_internal.hpp"

#include "SegmentedTensor.hpp"
#include "CompressibleTensor.hpp"

#include "HistogramTargetEntry.hpp"

Expand Down
2 changes: 1 addition & 1 deletion shared/ebm_native/CompressibleTensor.cpp
Expand Up @@ -15,7 +15,7 @@

#include "ebm_internal.hpp"

#include "SegmentedTensor.hpp"
#include "CompressibleTensor.hpp"

namespace DEFINED_ZONE_NAME {
#ifndef DEFINED_ZONE_NAME
Expand Down
6 changes: 3 additions & 3 deletions shared/ebm_native/CompressibleTensor.hpp
Expand Up @@ -2,8 +2,8 @@
// Licensed under the MIT license.
// Author: Paul Koch <code@koch.ninja>

#ifndef SLICEABLE_TENSOR_HPP
#define SLICEABLE_TENSOR_HPP
#ifndef COMPRESSIBLE_TENSOR_HPP
#define COMPRESSIBLE_TENSOR_HPP

#include <type_traits> // std::is_standard_layout
#include <stdlib.h> // malloc, realloc, free
Expand Down Expand Up @@ -237,4 +237,4 @@ static_assert(std::is_pod<CompressibleTensor>::value,

} // DEFINED_ZONE_NAME

#endif // SLICEABLE_TENSOR_HPP
#endif // COMPRESSIBLE_TENSOR_HPP
2 changes: 1 addition & 1 deletion shared/ebm_native/GenerateModelUpdate.cpp
Expand Up @@ -14,7 +14,7 @@

#include "ebm_internal.hpp"

#include "SegmentedTensor.hpp"
#include "CompressibleTensor.hpp"
#include "ebm_stats.hpp"
// feature includes
#include "Feature.hpp"
Expand Down
2 changes: 1 addition & 1 deletion shared/ebm_native/PartitionOneDimensionalBoosting.cpp
Expand Up @@ -16,7 +16,7 @@

#include "ebm_internal.hpp"

#include "SegmentedTensor.hpp"
#include "CompressibleTensor.hpp"
#include "ebm_stats.hpp"
#include "BoosterShell.hpp"

Expand Down
2 changes: 1 addition & 1 deletion shared/ebm_native/PartitionRandomBoosting.cpp
Expand Up @@ -13,7 +13,7 @@

#include "ebm_internal.hpp"

#include "SegmentedTensor.hpp"
#include "CompressibleTensor.hpp"
#include "ebm_stats.hpp"

#include "Feature.hpp"
Expand Down
2 changes: 1 addition & 1 deletion shared/ebm_native/PartitionTwoDimensionalBoosting.cpp
Expand Up @@ -12,7 +12,7 @@

#include "ebm_internal.hpp"

#include "SegmentedTensor.hpp"
#include "CompressibleTensor.hpp"
#include "ebm_stats.hpp"

#include "Feature.hpp"
Expand Down

0 comments on commit 57632e8

Please sign in to comment.