aboutsummaryrefslogtreecommitdiff
path: root/src/nbc/program.sml
diff options
context:
space:
mode:
authorCalvin <calvin@EESI>2013-03-15 15:26:20 -0400
committerCalvin <calvin@EESI>2013-03-15 15:26:20 -0400
commitb632667ce57af89691407bb8668e1512775278ae (patch)
treeb5742cef185f1cc4a7ba6005b5b4116ce7558a01 /src/nbc/program.sml
parent39e39f82cc38d71018882b0aaaf58255858a7c56 (diff)
nbc added
Diffstat (limited to 'src/nbc/program.sml')
-rw-r--r--src/nbc/program.sml9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/nbc/program.sml b/src/nbc/program.sml
new file mode 100644
index 0000000..df787ad
--- /dev/null
+++ b/src/nbc/program.sml
@@ -0,0 +1,9 @@
+signature PROGRAM = sig
+ val version: string
+ val name: string
+end
+
+structure Program :> PROGRAM = struct
+ val version = "2.0"
+ val name = "Naive Bayes Classifier - Score"
+end