Skip to content
Snippets Groups Projects
Commit 2e3eadf3 authored by Philipp Spohr's avatar Philipp Spohr
Browse files

to latest yoshiko

parent 280301ce
No related branches found
No related tags found
No related merge requests found
......@@ -8,7 +8,7 @@
package de.hhu.ba.yoshikoWrapper.swig;
public class LibraryInterface implements LibraryInterfaceConstants {
public class LibraryInterface {
public static SWIGTYPE_p_ysk__ClusterEditingSolutions new_ClusterEditingSolutions() {
long cPtr = LibraryInterfaceJNI.new_ClusterEditingSolutions();
return (cPtr == 0) ? null : new SWIGTYPE_p_ysk__ClusterEditingSolutions(cPtr, true);
......@@ -51,8 +51,8 @@ public class LibraryInterface implements LibraryInterfaceConstants {
LibraryInterfaceJNI.LibraryInput_setSize(SWIGTYPE_p_yskInput__LibraryInput.getCPtr(self), id);
}
public static void LibraryInput_addEdge(SWIGTYPE_p_yskInput__LibraryInput self, int sourceID, int targetID, double cost) {
LibraryInterfaceJNI.LibraryInput_addEdge(SWIGTYPE_p_yskInput__LibraryInput.getCPtr(self), sourceID, targetID, cost);
public static void LibraryInput_addEdge(SWIGTYPE_p_yskInput__LibraryInput self, int sourceID, int targetID, double cost, EdgeType edgeType) {
LibraryInterfaceJNI.LibraryInput_addEdge(SWIGTYPE_p_yskInput__LibraryInput.getCPtr(self), sourceID, targetID, cost, edgeType.swigValue());
}
public static String getVersionString() {
......
/* ----------------------------------------------------------------------------
* 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 interface LibraryInterfaceConstants {
public final static int CPXSIZE_BITS = LibraryInterfaceJNI.CPXSIZE_BITS_get();
}
......@@ -19,8 +19,7 @@ public class LibraryInterfaceJNI {
public final static native long new_LibraryInput();
public final static native void delete_LibraryInput(long jarg1);
public final static native void LibraryInput_setSize(long jarg1, int jarg2);
public final static native void LibraryInput_addEdge(long jarg1, int jarg2, int jarg3, double jarg4);
public final static native int CPXSIZE_BITS_get();
public final static native void LibraryInput_addEdge(long jarg1, int jarg2, int jarg3, double jarg4, int jarg5);
public final static native String getVersionString();
public final static native long processLibraryInput(long jarg1);
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment