]> granicus.if.org Git - graphviz/commitdiff
remove unused Operator_uniform_stress_matmul_delete function
authorMatthew Fernandez <matthew.fernandez@gmail.com>
Sun, 2 May 2021 02:22:51 +0000 (19:22 -0700)
committerMatthew Fernandez <matthew.fernandez@gmail.com>
Sun, 16 May 2021 16:40:28 +0000 (09:40 -0700)
lib/sfdpgen/sparse_solve.c

index 81ec06ee05ba8a06ad7052cd4f51c6311ba62ee3..9d8586fdd3ff543299ec709d0ff48a65f8244abd 100644 (file)
@@ -26,11 +26,6 @@ struct uniform_stress_matmul_data{
   SparseMatrix A;
 };
 
-
-void Operator_uniform_stress_matmul_delete(Operator o){
-  FREE(o->data);
-}
-
 static real *Operator_uniform_stress_matmul_apply(Operator o, real *x, real *y){
   struct uniform_stress_matmul_data *d = (struct uniform_stress_matmul_data*) (o->data);
   SparseMatrix A = d->A;