Skip to content
Snippets Groups Projects
Select Git revision
  • a8d555794956a716f0b1aaf46b2049df41fff7e5
  • master default
  • dev_general
  • 0.1.5
  • 0.1.4
  • 0.1.3
  • 0.1.2
  • 0.1.1
8 results

LibraryInterface.java

Blame
  • Code owners
    Assign users and groups as approvers for specific file changes. Learn more.
    LibraryInterface.java 1.79 KiB
    /* ----------------------------------------------------------------------------
     * This file was automatically generated by SWIG (http://www.swig.org).
     * Version 3.0.8
     *
     * Do not make changes to this file unless you know what you are doing--modify
     * the SWIG interface file instead.
     * ----------------------------------------------------------------------------- */
    
    package de.hhu.ba.yoshikoWrapper.swig;
    
    public class LibraryInterface {
      public static SWIGTYPE_p_ysk__ClusterEditingInstance new_ClusterEditingInstance() {
        long cPtr = LibraryInterfaceJNI.new_ClusterEditingInstance();
        return (cPtr == 0) ? null : new SWIGTYPE_p_ysk__ClusterEditingInstance(cPtr, true);
      }
    
      public static void ClusterEditingInstance_initNode(SWIGTYPE_p_ysk__ClusterEditingInstance self, SWIGTYPE_p_lemon__FullGraph__Node node, String name, SWIGTYPE_p_std__vectorT_int_t cluster) {
        LibraryInterfaceJNI.ClusterEditingInstance_initNode(SWIGTYPE_p_ysk__ClusterEditingInstance.getCPtr(self), SWIGTYPE_p_lemon__FullGraph__Node.getCPtr(node), name, SWIGTYPE_p_std__vectorT_int_t.getCPtr(cluster));
      }
    
      public static void ClusterEditingInstance_initEdge(SWIGTYPE_p_ysk__ClusterEditingInstance self, SWIGTYPE_p_lemon__FullGraph__Edge edge, double weight, boolean permanent, boolean forbidden) {
        LibraryInterfaceJNI.ClusterEditingInstance_initEdge(SWIGTYPE_p_ysk__ClusterEditingInstance.getCPtr(self), SWIGTYPE_p_lemon__FullGraph__Edge.getCPtr(edge), weight, permanent, forbidden);
      }
    
      public static String getVersionString() {
        return LibraryInterfaceJNI.getVersionString();
      }
    
      public static SWIGTYPE_p_ysk__ClusterEditingInstance createNewProblemInstance() {
        long cPtr = LibraryInterfaceJNI.createNewProblemInstance();
        return (cPtr == 0) ? null : new SWIGTYPE_p_ysk__ClusterEditingInstance(cPtr, false);
      }
    
    }