Skip to content
Snippets Groups Projects
Select Git revision
  • 8065c5c7c5f3244f9df43d956de67bba670d84c6
  • master default protected
2 results

Troubled_Cell_Detector.py

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);
      }
    
    }