X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/1dcdc787fa3baec4691ff65f67ff01f1e2415c63..7e91ae5a4f5db905184e9ebd3b711656826b6497:/include/xbt/RngStream.h?ds=sidebyside diff --git a/include/xbt/RngStream.h b/include/xbt/RngStream.h index a2ca8117de..211e8c18f5 100644 --- a/include/xbt/RngStream.h +++ b/include/xbt/RngStream.h @@ -1,8 +1,13 @@ - +/* Copyright (c) 2012, 2014. 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. */ + /* RngStream.h for ANSI C */ #ifndef RNGSTREAM_H #define RNGSTREAM_H - + #include "misc.h" typedef struct RngStream_InfoState * RngStream; @@ -14,6 +19,7 @@ struct RngStream_InfoState { char *name; }; +SG_BEGIN_DECL(); XBT_PUBLIC(int) RngStream_SetPackageSeed (unsigned long seed[6]); @@ -24,6 +30,9 @@ XBT_PUBLIC(RngStream) RngStream_CreateStream (const char name[]); XBT_PUBLIC(void) RngStream_DeleteStream (RngStream *pg); +XBT_PUBLIC(RngStream) RngStream_CopyStream (const RngStream src); + + XBT_PUBLIC(void) RngStream_ResetStartStream (RngStream g); @@ -58,8 +67,9 @@ XBT_PUBLIC(double) RngStream_RandU01 (RngStream g); XBT_PUBLIC(int) RngStream_RandInt (RngStream g, int i, int j); - + +SG_END_DECL(); #endif - +