summaryrefslogtreecommitdiff
path: root/gi/posterior-regularisation/prjava/src/util/DifferentiableObjective.java
diff options
context:
space:
mode:
authordesaicwtf <desaicwtf@ec762483-ff6d-05da-a07a-a48fb63a330f>2010-07-09 18:32:00 +0000
committerdesaicwtf <desaicwtf@ec762483-ff6d-05da-a07a-a48fb63a330f>2010-07-09 18:32:00 +0000
commit23c1f218e0cb1b0849fe5170526b8949cd8c969e (patch)
treed0e466bd001fea02866eed585850ea7ceecb7d00 /gi/posterior-regularisation/prjava/src/util/DifferentiableObjective.java
parentb128b2b107b3e7b77cfd5dbc578c060e52767afa (diff)
forgot to add util folder in optimization library
git-svn-id: https://ws10smt.googlecode.com/svn/trunk@206 ec762483-ff6d-05da-a07a-a48fb63a330f
Diffstat (limited to 'gi/posterior-regularisation/prjava/src/util/DifferentiableObjective.java')
-rw-r--r--gi/posterior-regularisation/prjava/src/util/DifferentiableObjective.java14
1 files changed, 14 insertions, 0 deletions
diff --git a/gi/posterior-regularisation/prjava/src/util/DifferentiableObjective.java b/gi/posterior-regularisation/prjava/src/util/DifferentiableObjective.java
new file mode 100644
index 00000000..1ff1ae4a
--- /dev/null
+++ b/gi/posterior-regularisation/prjava/src/util/DifferentiableObjective.java
@@ -0,0 +1,14 @@
+package util;
+
+public interface DifferentiableObjective {
+
+ public double getValue();
+
+ public void getGradient(double[] gradient);
+
+ public void getParameters(double[] params);
+
+ public void setParameters(double[] newParameters);
+
+ public int getNumParameters();
+}