Added a function to clone an interaction.
authorJohn Darrington <john@darrington.wattle.id.au>
Fri, 9 Dec 2011 10:24:56 +0000 (11:24 +0100)
committerJohn Darrington <john@darrington.wattle.id.au>
Sat, 10 Dec 2011 12:29:46 +0000 (13:29 +0100)
src/math/interaction.c
src/math/interaction.h

index 269aa7e9ad9af816a56b5c95d2fc4ce9ea90dbf7..4e4134f0ffcceb0b1ac79b5a8e0b583a3924be41 100644 (file)
@@ -42,7 +42,6 @@
 */
 
 
-
 struct interaction *
 interaction_create (const struct variable *v)
 {
@@ -57,6 +56,24 @@ interaction_create (const struct variable *v)
   return i;
 }
 
+/* Deep copy an interaction */
+struct interaction *
+interaction_clone (const struct interaction *iact)
+{
+  int v;
+  struct interaction  *i = xmalloc (sizeof *i);
+  i->vars = xcalloc (iact->n_vars, sizeof *i->vars);
+  i->n_vars = iact->n_vars;
+
+  for (v = 0; v < iact->n_vars; ++v)
+    {
+      i->vars[v] = iact->vars[v];
+    }
+
+  return i;
+}
+
+
 void
 interaction_destroy (struct interaction *i)
 {
index ccd6706f51f4252d2c13e99b800cf76edf81a47e..23bd4f219eaf2813b06f240f91ca27e06ec61a50 100644 (file)
@@ -33,6 +33,7 @@ struct interaction
 };
 
 struct interaction * interaction_create (const struct variable *);
+struct interaction * interaction_clone (const struct interaction *);
 void interaction_destroy (struct interaction *);
 void interaction_add_variable (struct interaction *, const struct variable *);
 void interaction_dump (const struct interaction *);