]> gitweb.michael.orlitzky.com - spline3.git/blobdiff - test/TestSuite.hs
Add four tests confirming that vertex swaps don't affect coefficients.
[spline3.git] / test / TestSuite.hs
index 2f2cc76d93fd0fdf18a469846ec286944bfd4777..f97df52855bc1bf95bbc7462a1214fb7934b2a5c 100644 (file)
@@ -416,6 +416,18 @@ main = do
   putStr "prop_b3_v2_always_zero... "
   quickCheckWith qc_args prop_b3_v2_always_zero
 
+  putStr "prop_swapping_vertices_doesnt_affect_coefficients1... "
+  quickCheckWith qc_args prop_swapping_vertices_doesnt_affect_coefficients1
+
+  putStr "prop_swapping_vertices_doesnt_affect_coefficients2... "
+  quickCheckWith qc_args prop_swapping_vertices_doesnt_affect_coefficients2
+
+  putStr "prop_swapping_vertices_doesnt_affect_coefficients3... "
+  quickCheckWith qc_args prop_swapping_vertices_doesnt_affect_coefficients3
+
+  putStr "prop_swapping_vertices_doesnt_affect_coefficients4... "
+  quickCheckWith qc_args prop_swapping_vertices_doesnt_affect_coefficients4
+
   putStrLn "\np. 78, (2.4)\n"
 
   putStr "prop_c3000_identity... "
@@ -427,7 +439,6 @@ main = do
   putStr "prop_c1110_identity... "
   quickCheckWith qc_args TT.prop_c1110_identity
 
-
   putStrLn "\nCardinal Tests\n"
 
   putStr "prop_ccwx_rotation_changes_direction... "