File tree Expand file tree Collapse file tree 1 file changed +3
-0
lines changed Expand file tree Collapse file tree 1 file changed +3
-0
lines changed Original file line number Diff line number Diff line change @@ -162,6 +162,7 @@ class NeighborhoodSearch
162
162
void set_active (unsigned int i, unsigned int j, bool active)
163
163
{
164
164
m_activation_table.set_active (i, j, active);
165
+ m_initialized = false ;
165
166
}
166
167
167
168
/* * Activate/Deactivate all point set pairs containing the given index. If search_neighbors is true, neighbors in all other point sets are searched.
@@ -173,13 +174,15 @@ class NeighborhoodSearch
173
174
void set_active (unsigned int i, bool search_neighbors = true , bool find_neighbors = true )
174
175
{
175
176
m_activation_table.set_active (i, search_neighbors, find_neighbors);
177
+ m_initialized = false ;
176
178
}
177
179
178
180
/* * Activate/Deactivate all point set pairs.
179
181
*/
180
182
void set_active (bool active)
181
183
{
182
184
m_activation_table.set_active (active);
185
+ m_initialized = false ;
183
186
}
184
187
185
188
/* * Returns true if point set i searchs points in point set j.
You can’t perform that action at this time.
0 commit comments