aboutsummaryrefslogtreecommitdiff
path: root/include/parallel.h
diff options
context:
space:
mode:
authorGertjan van den Burg <burg@ese.eur.nl>2013-10-18 15:48:59 +0200
committerGertjan van den Burg <burg@ese.eur.nl>2013-10-18 15:48:59 +0200
commit6d064658f8ae7ca0f42fef6dcc7f896144e9637b (patch)
treea41e8793f71f637b68f862220ae5566f4537073d /include/parallel.h
parentallow seeding of V and added documentation (diff)
downloadgensvm-6d064658f8ae7ca0f42fef6dcc7f896144e9637b.tar.gz
gensvm-6d064658f8ae7ca0f42fef6dcc7f896144e9637b.zip
restart using git
Diffstat (limited to 'include/parallel.h')
-rw-r--r--include/parallel.h13
1 files changed, 13 insertions, 0 deletions
diff --git a/include/parallel.h b/include/parallel.h
new file mode 100644
index 0000000..8747347
--- /dev/null
+++ b/include/parallel.h
@@ -0,0 +1,13 @@
+
+struct Task {
+ enum KernelType kernel_type;
+ int weight_idx;
+ double epsilon;
+ double p;
+ double kappa;
+ double lambda;
+ double *kernel_param;
+ struct MajData **data;
+}
+
+