You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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
The text was updated successfully, but these errors were encountered:
Currently, distances between vertices (or faces) are not stored.
Implement optional storage in the following fashion:
This component should store partial distance information about the vertices.
completely.
-> 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
The text was updated successfully, but these errors were encountered: