AGX Dynamics 2.42.1.1
Loading...
Searching...
No Matches
LocalHashTable.h
Go to the documentation of this file.
1/*
2Copyright 2007-2025. Algoryx Simulation AB.
3
4All AGX source code, intellectual property, documentation, sample code,
5tutorials, scene files and technical white papers, are copyrighted, proprietary
6and confidential material of Algoryx Simulation AB. You may not download, read,
7store, distribute, publish, copy or otherwise disseminate, use or expose this
8material unless having a written signed agreement with Algoryx Simulation AB, or having been
9advised so by Algoryx Simulation AB for a time limited evaluation, or having purchased a
10valid commercial license from Algoryx Simulation AB.
11
12Algoryx Simulation AB disclaims all responsibilities for loss or damage caused
13from using this software, unless otherwise stated in written agreements with
14Algoryx Simulation AB.
15*/
16
17#ifndef AGX_LOCALHASHTABLE_H
18#define AGX_LOCALHASHTABLE_H
19
20#include <agx/HashTable.h>
21#include <agx/Vector.h>
22
23// Disabled until bug in HashSet::rebuild is fixed, old buffer may be invalidated if thread scratch pad is reallocated
24#if 0
25namespace agxData
26{
30 template <typename KeyT, typename DataT, typename HashT = agx::DefaultHashFunctions>
31 class LocalHashTable : public agx::HashTable<KeyT, DataT, HashT>
32 {
33 public:
34 explicit LocalHashTable();
35 };
36
37
38 /* Implementation */
39 template <typename KeyT, typename DataT, typename HashT>
40 AGX_FORCE_INLINE LocalHashTable<KeyT, DataT, HashT>::LocalHashTable() : agx::HashTable<KeyT, DataT, HashT, agx::Thread::LocalAllocator>() {}
41
42}
43
44// AGX_TEMPLATED_TYPE_BINDING(agxData::LocalHashTable, "LocalHashTable")
45#endif
46
47#endif /* AGX_LOCALHASHTABLE_H */
Inheritance with partial specialization due to bug with ref_ptr containers.
#define AGX_FORCE_INLINE
Definition: macros.h:58
Contains classes for low level data storage for AGX.
Definition: Container.h:23
The agx namespace contains the dynamics/math part of the AGX Dynamics API.
LinearProbingHashTable< KeyT, DataT, HashT, AllocatorT > HashTable
Definition: HashTable.h:24