Commit bfee9434 authored by Jakub Klinkovský's avatar Jakub Klinkovský
Browse files

Moved multimaps from Experimental to Containers

parent d3774dbd
Loading
Loading
Loading
Loading
+11 −10
Original line number Diff line number Diff line
ADD_SUBDIRECTORY( Algorithms )
ADD_SUBDIRECTORY( Multimaps )

set( headers Array.h
             Array_impl.h
+1 −1
Original line number Diff line number Diff line
@@ -8,4 +8,4 @@ SET( headers EllpackIndexMultimap.h
             StaticEllpackIndexMultimapValues_impl.h
             MultimapPermutationApplier.h )

INSTALL( FILES ${headers} DESTINATION ${TNL_TARGET_INCLUDE_DIRECTORY}/Experimental/Multimaps )
INSTALL( FILES ${headers} DESTINATION ${TNL_TARGET_INCLUDE_DIRECTORY}/Containers/Multimaps )
+2 −2
Original line number Diff line number Diff line
@@ -11,7 +11,7 @@
#pragma once

#include <TNL/Containers/Vector.h>
#include <TNL/Experimental/Multimaps/EllpackIndexMultimapValues.h>
#include <TNL/Containers/Multimaps/EllpackIndexMultimapValues.h>

namespace TNL {

@@ -107,5 +107,5 @@ std::ostream& operator << ( std::ostream& str, const EllpackIndexMultimap< Index

} // namespace TNL

#include <TNL/Experimental/Multimaps/EllpackIndexMultimap_impl.h>
#include <TNL/Containers/Multimaps/EllpackIndexMultimap_impl.h>
+1 −1
Original line number Diff line number Diff line
@@ -114,5 +114,5 @@ std::ostream& operator << ( std::ostream& str, const EllpackIndexMultimapValues<

} // namespace TNL

#include <TNL/Experimental/Multimaps/EllpackIndexMultimapValues_impl.h>
#include <TNL/Containers/Multimaps/EllpackIndexMultimapValues_impl.h>
Loading