~ubuntu-branches/ubuntu/vivid/quantlib-swig/vivid

« back to all changes in this revision

Viewing changes to Java/org/quantlib/MonotonicLogParabolic.java

  • Committer: Bazaar Package Importer
  • Author(s): Dirk Eddelbuettel
  • Date: 2009-12-03 17:01:53 UTC
  • mfrom: (1.1.9 upstream) (2.1.6 sid)
  • Revision ID: james.westby@ubuntu.com-20091203170153-x5yrwybjsl2q11vw
* New upstream release

* debian/control: Updated Standards-Version: to current value

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* ----------------------------------------------------------------------------
 
2
 * This file was automatically generated by SWIG (http://www.swig.org).
 
3
 * Version 1.3.40
 
4
 *
 
5
 * Do not make changes to this file unless you know what you are doing--modify
 
6
 * the SWIG interface file instead.
 
7
 * ----------------------------------------------------------------------------- */
 
8
 
 
9
package org.quantlib;
 
10
 
 
11
public class MonotonicLogParabolic {
 
12
  private long swigCPtr;
 
13
  protected boolean swigCMemOwn;
 
14
 
 
15
  protected MonotonicLogParabolic(long cPtr, boolean cMemoryOwn) {
 
16
    swigCMemOwn = cMemoryOwn;
 
17
    swigCPtr = cPtr;
 
18
  }
 
19
 
 
20
  protected static long getCPtr(MonotonicLogParabolic obj) {
 
21
    return (obj == null) ? 0 : obj.swigCPtr;
 
22
  }
 
23
 
 
24
  protected void finalize() {
 
25
    delete();
 
26
  }
 
27
 
 
28
  public synchronized void delete() {
 
29
    if (swigCPtr != 0) {
 
30
      if (swigCMemOwn) {
 
31
        swigCMemOwn = false;
 
32
        QuantLibJNI.delete_MonotonicLogParabolic(swigCPtr);
 
33
      }
 
34
      swigCPtr = 0;
 
35
    }
 
36
  }
 
37
 
 
38
  public MonotonicLogParabolic(Array x, Array y) {
 
39
    this(QuantLibJNI.new_MonotonicLogParabolic(Array.getCPtr(x), x, Array.getCPtr(y), y), true);
 
40
  }
 
41
 
 
42
  public double getValue(double x, boolean allowExtrapolation) {
 
43
    return QuantLibJNI.MonotonicLogParabolic_getValue__SWIG_0(swigCPtr, this, x, allowExtrapolation);
 
44
  }
 
45
 
 
46
  public double getValue(double x) {
 
47
    return QuantLibJNI.MonotonicLogParabolic_getValue__SWIG_1(swigCPtr, this, x);
 
48
  }
 
49
 
 
50
  public double derivative(double x, boolean extrapolate) {
 
51
    return QuantLibJNI.MonotonicLogParabolic_derivative__SWIG_0(swigCPtr, this, x, extrapolate);
 
52
  }
 
53
 
 
54
  public double derivative(double x) {
 
55
    return QuantLibJNI.MonotonicLogParabolic_derivative__SWIG_1(swigCPtr, this, x);
 
56
  }
 
57
 
 
58
  public double secondDerivative(double x, boolean extrapolate) {
 
59
    return QuantLibJNI.MonotonicLogParabolic_secondDerivative__SWIG_0(swigCPtr, this, x, extrapolate);
 
60
  }
 
61
 
 
62
  public double secondDerivative(double x) {
 
63
    return QuantLibJNI.MonotonicLogParabolic_secondDerivative__SWIG_1(swigCPtr, this, x);
 
64
  }
 
65
 
 
66
  public double primitive(double x, boolean extrapolate) {
 
67
    return QuantLibJNI.MonotonicLogParabolic_primitive__SWIG_0(swigCPtr, this, x, extrapolate);
 
68
  }
 
69
 
 
70
  public double primitive(double x) {
 
71
    return QuantLibJNI.MonotonicLogParabolic_primitive__SWIG_1(swigCPtr, this, x);
 
72
  }
 
73
 
 
74
}