[gnome-calculator/60-split-out-a-backend-library] gcalc: implemented acosh() function



commit efbbbf3ba2137f171b6ad18a267512151b1b0a4a
Author: Daniel Espinosa Ortiz <esodan gmail com>
Date:   Fri Jan 4 16:45:20 2019 -0600

    gcalc: implemented acosh() function

 gcalc/gcalc-function-acosh.vala | 54 +++++++++++++++++++++++++++++++++++++++++
 gcalc/meson.build               |  1 +
 tests/gcalc-solving-basic.vala  | 16 +++++++++++-
 3 files changed, 70 insertions(+), 1 deletion(-)
---
diff --git a/gcalc/gcalc-function-acosh.vala b/gcalc/gcalc-function-acosh.vala
new file mode 100644
index 00000000..4e479c2a
--- /dev/null
+++ b/gcalc/gcalc-function-acosh.vala
@@ -0,0 +1,54 @@
+/* gcalc-function-acosh.vala
+ *
+ * Copyright (C) 2019 Daniel Espinosa <esodan gmail com>
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License as published by the Free Software Foundation; either
+ * version 2.1 of the License, or (at your option) any later version.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+ * Lesser General Public License for more details.
+
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, see <http://www.gnu.org/licenses/>.
+ *
+ * Authors:
+ *      Daniel Espinosa <esodan gmail com>
+ */
+public class GCalc.GFunctionAcosh : GFunction {
+
+  public GFunctionAcosh () {
+    base ("acosh", 1);
+    param_types.add (new GConstant ());
+  }
+
+  public override Expression call () throws GLib.Error
+  {
+    verify_params ();
+    GConstant c = null;
+    var exp = parameters.get_item (0) as Expression;
+    if (exp == null) {
+      throw new FunctionError.INVOCATION_ERROR ("Invalid parameter type. Expected %s", 
typeof(Expression).name ());
+    }
+    var ev = exp.solve ();
+    if (ev is ErrorResult) {
+       throw new FunctionError.INVOCATION_ERROR ("Invalid expression: %s", ((ErrorResult) ev).to_string ());
+    }
+    if (ev is Result) {
+      c = ((Result) ev).expression as GConstant;
+    }
+    if (c == null) {
+       throw new FunctionError.INVOCATION_ERROR ("Invalid expression in result");
+    }
+    var p1 = MPC.Complex (1000);
+    p1.set (c.get_complex ());
+    var res = MPC.Complex (1000);
+    res.acosh (p1);
+    var nc = new GConstant.internal_complex (res);
+    return nc as Expression;
+  }
+}
+
diff --git a/gcalc/meson.build b/gcalc/meson.build
index b6038765..8aab0588 100644
--- a/gcalc/meson.build
+++ b/gcalc/meson.build
@@ -47,6 +47,7 @@ sources = files([
        'gcalc-expression-container.vala',
        'gcalc-function.vala',
        'gcalc-function-acos.vala',
+       'gcalc-function-acosh.vala',
        'gcalc-function-asin.vala',
        'gcalc-function-asinh.vala',
        'gcalc-function-atan.vala',
diff --git a/tests/gcalc-solving-basic.vala b/tests/gcalc-solving-basic.vala
index 61f545c3..cd6d01f8 100644
--- a/tests/gcalc-solving-basic.vala
+++ b/tests/gcalc-solving-basic.vala
@@ -638,7 +638,21 @@ class Tests {
     ()=>{
       try {
         var c1 = new GConstant.@double (0.0);
-        var f = new GFunctionTanh ();
+        var f = new GFunctionAsinh ();
+        f.parameters.add (c1);
+        var c2 = f.call () as Constant;
+        assert (c2 != null);
+        message (c2.to_string ());
+        assert (c2.real () == 0.0);
+      } catch (GLib.Error e) {
+        warning ("Error: %s", e.message);
+      }
+    });
+    Test.add_func ("/gcalc/solve/function/acosh",
+    ()=>{
+      try {
+        var c1 = new GConstant.@double (1.0);
+        var f = new GFunctionAcosh ();
         f.parameters.add (c1);
         var c2 = f.call () as Constant;
         assert (c2 != null);


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]