aboutsummaryrefslogtreecommitdiff
path: root/src/cell.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/cell.c')
-rw-r--r--src/cell.c8
1 files changed, 0 insertions, 8 deletions
diff --git a/src/cell.c b/src/cell.c
index ff9ff3d9..ee00248d 100644
--- a/src/cell.c
+++ b/src/cell.c
@@ -614,14 +614,6 @@ void cell_print(UnitCell *cell)
#define MAX_CAND (1024)
-static int within_tolerance(double a, double b, double percent)
-{
- double tol = a * (percent/100.0);
- if ( fabs(b-a) < tol ) return 1;
- return 0;
-}
-
-
static int right_handed(struct rvec a, struct rvec b, struct rvec c)
{
struct rvec aCb;