-
Notifications
You must be signed in to change notification settings - Fork 12
Open
Labels
Description
Currently, distances between vertices (or faces) are not stored.
Implement optional storage in the following fashion:
- Add a record component DistanceMatrix to the representation of twisted polygonal complexes.
This component should store partial distance information about the vertices. - Add the methods "StoreDistances" and "DeleteDistances" to initialise the matrix or to delete it
completely. - Within each distance calculation, do the following:
-> Check whether distances are stored (by checking whether the matrix exists)
-> If it exists, check whether the result is known
-> For known result, return it
-> Otherwise: Compute the distance
-> If distances are stored, the result is written in the matrix
Reactions are currently unavailable