X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/b3b356352e87ae00a20f737c48e19b0c8413455a..c7c6662f2627dddac82f15cb8d4f1b42ac23e2b9:/src/bindings/java/jmsg_rngstream.h diff --git a/src/bindings/java/jmsg_rngstream.h b/src/bindings/java/jmsg_rngstream.h index 98a2272e4e..95ac0d8aff 100644 --- a/src/bindings/java/jmsg_rngstream.h +++ b/src/bindings/java/jmsg_rngstream.h @@ -1,52 +1,42 @@ -/* Functions related to the RngStream Java port */ +/* Java binding of the RngStream library */ -/* Copyright (c) 2007-2015. The SimGrid Team. - * All rights reserved. */ +/* Copyright (c) 2007-2018. The SimGrid Team. All rights reserved. */ /* This program is free software; you can redistribute it and/or modify it * under the terms of the license (GNU LGPL) which comes with this package. */ #ifndef MSG_RNGSTREAM_H #define MSG_RNGSTREAM_H -#include -#include - -RngStream jrngstream_to_native(JNIEnv *env, jobject jrngstream); - -JNIEXPORT void JNICALL -Java_org_simgrid_msg_RngStream_nativeInit(JNIEnv *env, jclass cls); - -JNIEXPORT void JNICALL -Java_org_simgrid_msg_RngStream_create(JNIEnv *env, jobject jrngstream, jstring name); - -JNIEXPORT void JNICALL -Java_org_simgrid_msg_RngStream_nativeFinalize(JNIEnv *env, jobject jrngstream); - -JNIEXPORT jboolean JNICALL -Java_org_simgrid_msg_RngStream_setPackageSeed(JNIEnv *env, jobject jrngstream, jintArray seed); -JNIEXPORT void JNICALL -Java_org_simgrid_msg_RngStream_resetStart(JNIEnv *env, jobject jrngstream); - -JNIEXPORT void JNICALL -Java_org_simgrid_msg_RngStream_resetStartSubstream(JNIEnv *env, jobject jrngstream); - -JNIEXPORT void JNICALL -Java_org_simgrid_msg_RngStream_resetNextSubstream(JNIEnv *env, jobject jrngstream); - -JNIEXPORT void JNICALL -Java_org_simgrid_msg_RngStream_setAntithetic(JNIEnv *env, jobject jrngstream, jboolean ja); - -JNIEXPORT jboolean JNICALL -Java_org_simgrid_msg_RngStream_setSeed(JNIEnv *env, jobject jrngstream, jintArray jseed); +#include "xbt/RngStream.h" +#include -JNIEXPORT void JNICALL -Java_org_simgrid_msg_RngStream_advanceState(JNIEnv *env, jobject jrngstream, jint e, jint g); +SG_BEGIN_DECL() -JNIEXPORT jdouble JNICALL -Java_org_simgrid_msg_RngStream_randU01(JNIEnv *env, jobject jrngstream); +/* Shut up some errors in eclipse online compiler. I wish such a pimple wouldn't be needed */ +#ifndef JNIEXPORT +#define JNIEXPORT +#endif +#ifndef JNICALL +#define JNICALL +#endif +/* end of eclipse-mandated pimple */ -JNIEXPORT jint JNICALL -Java_org_simgrid_msg_RngStream_randInt(JNIEnv *env, jobject jrngstream, jint i, jint j); +RngStream jrngstream_to_native(JNIEnv *env, jobject jrngstream); -#endif /* MSG_RNGSTREAM_H */ +JNIEXPORT void JNICALL Java_org_simgrid_msg_RngStream_nativeInit(JNIEnv *env, jclass cls); +JNIEXPORT void JNICALL Java_org_simgrid_msg_RngStream_create(JNIEnv *env, jobject jrngstream, jstring name); +JNIEXPORT void JNICALL Java_org_simgrid_msg_RngStream_nativeFinalize(JNIEnv *env, jobject jrngstream); +JNIEXPORT jboolean JNICALL Java_org_simgrid_msg_RngStream_setPackageSeed(JNIEnv* env, jobject jrngstream, + jintArray seed); +JNIEXPORT void JNICALL Java_org_simgrid_msg_RngStream_resetStart(JNIEnv *env, jobject jrngstream); +JNIEXPORT void JNICALL Java_org_simgrid_msg_RngStream_resetStartSubstream(JNIEnv *env, jobject jrngstream); +JNIEXPORT void JNICALL Java_org_simgrid_msg_RngStream_resetNextSubstream(JNIEnv *env, jobject jrngstream); +JNIEXPORT void JNICALL Java_org_simgrid_msg_RngStream_setAntithetic(JNIEnv *env, jobject jrngstream, jboolean ja); +JNIEXPORT jboolean JNICALL Java_org_simgrid_msg_RngStream_setSeed(JNIEnv *env, jobject jrngstream, jintArray jseed); +JNIEXPORT void JNICALL Java_org_simgrid_msg_RngStream_advanceState(JNIEnv *env, jobject jrngstream, jint e, jint g); +JNIEXPORT jdouble JNICALL Java_org_simgrid_msg_RngStream_randU01(JNIEnv *env, jobject jrngstream); +JNIEXPORT jint JNICALL Java_org_simgrid_msg_RngStream_randInt(JNIEnv *env, jobject jrngstream, jint i, jint j); + +SG_END_DECL() +#endif