Virtual Laboratory Environment pyvle
A multi-modeling and simulation environment to study complex systems
Brought to you by:
quesnel
pyvle-1.1.0-beta2 commit 3da58664d008b49f61a591a81bfca00f2578722a Author: Gauthier Quesnel <quesnel@users.sourceforge.net> Date: Fri May 31 14:02:57 2013 +0200 pyvle-1.1.0-beta1 commit 3150bad78e275bbf856d0ede89fc8abd4e813bce Author: Gauthier Quesnel <quesnel@users.sourceforge.net> Date: Fri May 31 13:36:58 2013 +0200 Remove deprecated pyvle_open function The pvle_open() function is bad: vpz::Vpz* pyvle_open(const char* filename) { std::string logfilename = utils::Trace::getLogFilename("pyvle.log"); std::ofstream* logfile = new std::ofstream(logfilename.c_str()); (*logfile) << _("Error: pyvle_open whitout the specfication of a package " "is not possible") << "\n\n" << std::flush; } - Memory leaks with the logfile pointer. - The message can be view for user only if he open the $VLE_HOME/pyvle.log file. - The return is missing. So, I remove this useless function. commit 99948858f2c5da286bb69107e10ac0cb91cb90cf Author: Ronan Trépos <rtrepos@toulouse.inra.fr> Date: Tue May 21 21:06:33 2013 +0200 Update pyvle according the new API of Package - taking into account the version of VLE Without the Package singleton. - disable pyvle_open without the specification of a package. commit b127866d8592d0e8b0a750c39d85d6b16e673939 Author: Arezki Zerourou <zerourou@toulouse.inra.fr> Date: Mon Mar 11 14:54:20 2013 +0100 Add function to get output directory package path Add missing getOutputDirectory function (closes #3). commit 25b7d58c8be90ab42c0ceecf7132074dd10778ef Author: Gauthier Quesnel <quesnel@users.sourceforge.net> Date: Wed Mar 6 14:42:55 2013 +0100 Upgrade packages with API changes The vle::devs::ExternalEventList is now a typedef to std::vector < vle::devs::ExternalEvent* > instead of a class. The function addEvent is missing. We replace with a call to push_back. commit a97862c6a422dfe16bde734802d6e1890e06e084 Author: Ronan Trépos <rtrepos@toulouse.inra.fr> Date: Tue Feb 12 15:04:09 2013 +0100 Update README commit 78e20fcd33d05f7d55b7fa401ce28c424b01ec08 Author: Ronan Trépos <rtrepos@toulouse.inra.fr> Date: Tue Feb 12 14:57:52 2013 +0100 Fix missing include of glibmm The file glibmm/exception.h was missing. commit d90666ded39f05c6c1dda9c787aad1cdfd6bab2b Author: Ronan Trépos <rtrepos@toulouse.inra.fr> Date: Tue Feb 12 14:43:05 2013 +0100 Fix unit test call VLE_HOME is now given as argument to the unit test calling. commit c7ad3276adcb28056a7414cb74a6ef4294373dd4 Author: Ronan Trépos <rtrepos@toulouse.inra.fr> Date: Tue Oct 2 14:53:03 2012 +0200 Upgrade to vle-1.1 - Test packages are dynamically compiled. - Outputs are now Matrices. - For now, no replicas. commit db36e7a70c18e7030111a754406962cd574c2d7d Author: Jerome Thiard <jerome.thiard@toulouse.inra.fr> Date: Tue Apr 3 15:27:01 2012 +0200 Add python file objects support for vpz file The Vle `__init__' and `save' methods now can deal with either strings (representing filenames) or python file objects. This allow the vpz's to be opened from and saved in every object which looks like a file object, including buffers like the builtin cStringIO python module. commit 2630bee0eade91075653fe32b314588773517ceb Author: Jerome Thiard <jerome.thiard@toulouse.inra.fr> Date: Fri Apr 13 18:06:08 2012 +0200 Add unittests for opening and saving vpz's commit 4ab88c7f2e151d3901d991ee29b606157b7a0c79 Author: Gauthier Quesnel <quesnel@users.sourceforge.net> Date: Mon Apr 16 09:08:32 2012 +0200 Update AUTHORS commit 7c046c20b0de15d356eb1dac68d3b7ea18d92d02 Author: Nathalie Rousse <nrousse@toulouse.inra.fr> Date: Thu Apr 12 10:31:59 2012 +0200 Add a function addXMLCondition This function was missing of pyvle. commit b8042d891c8b0bd658aa9143a41c4f8a166877df Author: Nathalie Rousse <nrousse@toulouse.inra.fr> Date: Thu Apr 12 10:17:23 2012 +0200 Complete the pyvle_condition_get_value_type For TUPLE TABLE XMLTYPE and MATRIX vle types, the function pyvle_condition_get_value_type has been completed. commit 9e8532a4848c2617f9c9fdd2db11a5a4564f6c34 Author: Ronan Trépos <rtrepos@toulouse.inra.fr> Date: Tue Apr 3 18:35:27 2012 +0200 Fix missing addValueCondition We fix missing addValueCondition and check type on addRealCondition, addStringCondition etc. (Closes #3497691) commit 20fab7ff0419300aec2cc208e38a75a99775bf64 Author: Ronan Trépos <rtrepos@toulouse.inra.fr> Date: Wed Feb 8 14:09:57 2012 +0100 Fix default return on listDynamicObservables If dynamic is not found, there was no return statement, which leads to a seg fault. commit 036fce3729555257c081335d6ae97fe6e08546af Author: Ronan Trépos <rtrepos@toulouse.inra.fr> Date: Wed Feb 8 16:14:48 2012 +0100 Add function listViewEntries This function associates the list of complete names of ports to the view names; ie. it gives column names for all views (Closes 3475367) Conflicts: src/pyvle.cpp commit e18f5c6b9d03d7496e5caceb30fea66e86ba45a7 Author: Jerome Thiard <jerome.thiard@toulouse.inra.fr> Date: Sun Jan 29 15:06:21 2012 +0100 Add all vle value types management All value types can be converted from python to vle and vice versa. Specific python classes vleXML, vleTUPLE, vleTABLE, vleMATRIX that embed classical python structures are added in order to remove ambiguity in conversion form python to vle. (Closes: 3474408, 3474406) commit 8baab586f1f847f0c0efbd9765f554986bd1780d Author: Gauthier Quesnel <quesnel@users.sourceforge.net> Date: Mon Aug 1 10:20:02 2011 +0200 Updating the includes' positions to reduce warnings As required by the header `Python.h', we make sure that `Python.h' was int the first include position when building object. commit 75822291b86133a8d542ad7091c88518c77610ef Author: Gauthier Quesnel <quesnel@users.sourceforge.net> Date: Mon Aug 1 10:10:57 2011 +0200 Using the new plug-ins loading system We replace the utils::ModuleCache with the recent utils::ModuleManager from VLE 1.1 development branch. We update source code. The utils::ModuleCache uses a singleton system while utils::ModuleManager uses a RAII idiom. commit b86db0090b194997eaccfb36e5adc239ed455483 Author: Gauthier Quesnel <quesnel@users.sourceforge.net> Date: Mon Aug 1 10:10:06 2011 +0200 Replace toLong with toInteger function The recent changes in VLE 1.1 replace the `long' in value::Integer with a `vle::int32_t' value. commit 4601179433d71100879733a03e470ef280fe2d20 Author: Gauthier Quesnel <quesnel@users.sourceforge.net> Date: Mon Aug 1 10:05:19 2011 +0200 Remove references to the dynamic model attribute The vpz::Dynamic model attribute was removed from VLE 1.1 API. We remove function which access to this attribute. commit b9c63e4c1436bcbd9662581f7b2a8f12edbd5b19 Author: Gauthier Quesnel <quesnel@users.sourceforge.net> Date: Mon Aug 1 09:35:23 2011 +0200 Enabling of the unit tests directory We activate the unit tests by adding the CMakeLists.txt file which activates the unit tests and ctest. commit 4b89bd8deef4726dd785e5acb9f83dd65beb0225 Author: Jerome Thiard <jerome.thiard@toulouse.inra.fr> Date: Mon May 30 17:01:08 2011 +0200 Fix segfault with NULL pointer conversion When in a storage view, some values are missing, we get a NULL pointer. In that case we store a `None` value in the results instead of calling pyvle_convert_value on the pointer. Signed-off-by: Gauthier Quesnel <quesnel@users.sourceforge.net> commit 633ea39e6f378c23d8cc750578d22f9e920475f3 Author: Gauthier Quesnel <quesnel@users.sourceforge.net> Date: Wed Jun 1 12:09:42 2011 +0200 Enable ctest for PyVLE port We enable for PyVLE project, the CTest program. The filename of the VPZ is now given by the command line interface to the program pyvletest.py commit 08114054e70e7bdb0f565a21ccdc41598e7cdd07 Author: Jerome Thiard <jerome.thiard@toulouse.inra.fr> Date: Thu May 5 16:21:28 2011 +0200 Add unit testing in pyvle The unit tests are in the `tests' directory, and uses the `unittest' python module (builtin since python 2.0). All tests can be ran by executing `pyvletest.py'. For now just some are done, more work needed... Signed-off-by: Gauthier Quesnel <quesnel@users.sourceforge.net> (cherry picked from commit ab1b157dd6b0420b8569b37bba0f7bb22c73636b) commit 0c4f7052c7c5751c6f9b07d273384f8b801545eb Author: Jerome Thiard <jerome.thiard@toulouse.inra.fr> Date: Thu May 5 13:56:37 2011 +0200 Add new createCondition method in class Vle Allow the user to create a new condition, and optionally giving its ports and values as keywords arguments. Signed-off-by: Gauthier Quesnel <quesnel@users.sourceforge.net> (cherry picked from commit 0b088dfb4cd781945fb167ba5dac66b2383ab5c2) commit 2840e511b08002619a7ccc4e2253deb79c4b1a9d Author: Gauthier Quesnel <quesnel@users.sourceforge.net> Date: Wed Apr 20 12:58:08 2011 +0200 Bump to VLE 1.1 commit e19071ff23d332a227cdc039e1d34fb02342a86b Author: Gauthier Quesnel <quesnel@users.sourceforge.net> Date: Mon Apr 18 16:17:48 2011 +0200 Fix load/unload of simulators plug-ins Since the latest VLE 1.0.0-alpha-4 version, the utils::ModuleCache build a cache of simulators, outputs, plug-ins. However, users recommend to clear the cache after running a simulation or an experimental design to enable them to load another versions of the same plug-ins. commit 47a812693927f5eac06118b5e6686b1965031445 Author: Gauthier Quesnel <quesnel@users.sourceforge.net> Date: Fri Mar 11 11:16:30 2011 +0100 pyvle-1.0.0-alpha4 commit d1e2bfabee9055c569f8bd4910805ea8674edaa5 Author: Gauthier Quesnel <quesnel@users.sourceforge.net> Date: Fri Mar 11 10:27:39 2011 +0100 cpack: fix the default rpm and deb package name The RPM and Deb package follow the VLE package name: pyvle-1-0 instead of pyvle-1.0.0-alpha-1.0. commit cc977375a336ed625559a6cd15d0226f75f3154a Author: Gauthier Quesnel <quesnel@users.sourceforge.net> Date: Tue Mar 8 15:07:41 2011 +0100 cpack: rewrite packaging system - use the CMake strip option to reduce dynamic library file size. - build the Debian and RPM packages commit 4d50d6e230ae63d4affde2e6a208baa75541826e Author: Gauthier Quesnel <quesnel@users.sourceforge.net> Date: Tue Jan 18 08:44:57 2011 +0100 pyvle-1.0.0-alpha3 commit c901f7b97bdae0d5f64802c07cc494e7b740bd66 Author: Gauthier Quesnel <quesnel@users.sourceforge.net> Date: Mon Jan 17 12:09:42 2011 +0100 Fix boost::python wrapper with latest VLE's API Value is now a pure virtual class. The boost::python::class_ needs a new parameters boost::python::no_init to avoid compilation error. - fix boost::python::class_ error. - remove the using boost::python instructions. commit c580d7635e1bfbeaa6909601410b08c1aaec95bc Author: Gauthier Quesnel <quesnel@users.sourceforge.net> Date: Fri Jan 14 15:02:13 2011 +0100 Update AUTHORS commit df23ccd045c25ab6147d74d5d2ad4698adb82c57 Author: Gauthier Quesnel <quesnel@users.sourceforge.net> Date: Tue Dec 7 21:39:49 2010 +0100 pyvle-1.0.0-alpha2 commit 3e106b84f8d3327eb71149625399ea1aa33b078e Author: Gauthier Quesnel <quesnel@users.sourceforge.net> Date: Tue Dec 7 15:43:45 2010 +0100 Update package generation Fix the VLE_EXTRA variable from `-rc1' or `-alpha1' to `rc1' or `alpha1' to greatly increase the binary and source packages. commit 6a72e7d5d05979bb777d7d6b189a0dc5e5fc195e Author: Gauthier Quesnel <quesnel@users.sourceforge.net> Date: Tue Dec 7 08:28:34 2010 +0100 pyvle-1.0.0-alpha1 commit 44119f25a0e16558a5a26b92af5072a408b39e92 Author: Gauthier Quesnel <quesnel@users.sourceforge.net> Date: Wed Nov 24 22:56:26 2010 +0100 Update headers of source file Replace the headers with the headers of the VLE framework. commit 2be24cb64703bc5504de22c5ea47f13a06ba6b5f Author: Gauthier Quesnel <quesnel@users.sourceforge.net> Date: Wed Nov 24 22:50:52 2010 +0100 Bump to VLE 1.0 commit 2398809deaa092f67ed25993760a7ffc0506254e Author: Gauthier Quesnel <quesnel@users.sourceforge.net> Date: Thu Jul 22 21:35:24 2010 +0200 Update the CMakeLists.txt install script commit dfe9891bfb92be1476fbfa11abbbd4cbaf93ca2b Author: Gauthier Quesnel <quesnel@users.sourceforge.net> Date: Thu Jul 22 21:30:26 2010 +0200 Update Pyvle to the API of VLE 0.9 commit 798674c20af89654c2a5f2426922cc9de8cdf29d Author: Gauthier Quesnel <quesnel@users.sourceforge.net> Date: Thu Jul 22 21:22:31 2010 +0200 Add CPack script genererator commit 9838e6b00ae49ba8f106fec384f2a7e0fba72123 Author: Gauthier Quesnel <quesnel@users.sourceforge.net> Date: Thu Jul 22 13:44:37 2010 +0200 Bump to 0.9 commit 26d5098dce2066f4da965241f70c720d0f706fff Author: Gauthier Quesnel <quesnel@users.sourceforge.net> Date: Thu Jul 22 17:26:24 2010 +0200 Update headers commit dc16425f0b134aa31fa9f5a8b3e4518f5ae9a0d6 Author: Gauthier Quesnel <quesnel@users.sourceforge.net> Date: Wed Jul 21 11:25:43 2010 +0200 Update the file README commit 5c85213ac4916a118ff0898bc23dfee87fd68e8e Author: Gauthier Quesnel <quesnel@users.sourceforge.net> Date: Tue Jul 20 15:32:24 2010 +0200 Update the file AUTHORS commit cab8aabca72d8aeeff1338c0011355a7d3660337 Author: Jerome Thiard <jerome.thiard@toulouse.inra.fr> Date: Fri Jul 16 18:06:01 2010 +0200 Add new setName method in class Vle Allow the user to change the experiment name commit ae0373e3ce33108de50fd177ca835d89ecbb1722 Author: Jerome Thiard <jerome.thiard@toulouse.inra.fr> Date: Wed Jun 9 15:36:50 2010 +0200 Fix bug in traceRunError this function now use the Vle.vpz instead of Vle.filename. Using the filename, it didn't use changes made in the experiment. commit 894b3c64b7a8ef0ff2c300e28e93d13cffe2a137 Author: Jerome Thiard <jerome.thiard@toulouse.inra.fr> Date: Tue Jun 8 11:22:19 2010 +0200 Fix bug in pyvle_get_package_vpz_directory commit 4d7dac006ef5f67970855fcc0d2151d6fe5caf48 Author: Jerome Thiard <jerome.thiard@toulouse.inra.fr> Date: Tue Jun 8 11:25:03 2010 +0200 Add getDataDirectory method in class VlePackage commit 661e577d8486c0bf3a223e32c04d01c7cecc28e2 Author: Eric Ramat <ramat@lil.univ-littoral.fr> Date: Fri Apr 30 17:18:02 2010 +0200 Coding style ans update Authors commit 9dcf7d25dbd2a758817eb240a75bfbbe36a610a2 Author: Jerome Thiard <jerome.thiard@toulouse.inra.fr> Date: Fri Apr 23 15:35:53 2010 +0200 add map and set support, and bases for Value support * new functions to add map (from python dict) or set (from python list) or Value in condition * new function to set a condition port value from a python dict or list * getConditionPortValue can return a python dict or a python list if the value is a map or a set commit 90acf1f7ba11d0a01939b8e1c89e8a1e7be43335 Author: Eric Ramat <ramat@lil.univ-littoral.fr> Date: Thu Apr 15 17:11:04 2010 +0200 Fix python version for correct installation commit bfdd10c797732f62d7f2951aa5e6c72b3645aaa8 Author: Eric Ramat <ramat@lil.univ-littoral.fr> Date: Thu Apr 15 14:30:58 2010 +0200 Update copyright. commit 5b46dba192fd6ca62b3b4c04a32981b549a3a4b3 Author: Eric Ramat <ramat@lil.univ-littoral.fr> Date: Fri Apr 9 14:30:08 2010 +0200 Update authors commit 0b1cabc2c4e75d81fad06833860ec0d63b385252 Author: Sauvage David <davidsauvage8@gmail.com> Date: Fri Apr 9 09:48:42 2010 +0200 Add a new method listOutputs in class Vle Allows user to see the outputs commit 127885f07d697f5560c44993b7e211d05349df3a Author: Eric Ramat <ramat@lil.univ-littoral.fr> Date: Fri Jan 22 11:39:10 2010 +0100 Fix bug in getBegin and setBegin commit b462a03a799ff722ac8fa4598f8c9d4c7a7f80a4 Author: Eric Ramat <ramat@lil.univ-littoral.fr> Date: Tue Jan 19 13:45:42 2010 +0100 Change the structure of result commit 8cc772eaca724d033bce286e25716fe7b611c9cd Author: Eric Ramat <ramat@lil.univ-littoral.fr> Date: Tue Jan 19 12:24:27 2010 +0100 Coding style commit 9ea290704ee9bb1719d5d18d09136e04ed3d24a2 Author: Eric Ramat <ramat@lil.univ-littoral.fr> Date: Tue Jan 19 12:04:14 2010 +0100 Remove VleUtils class and change runManager result commit 15720cc2d8795f9be10f96091168bcd131bd28f0 Author: Eric Ramat <ramat@lil.univ-littoral.fr> Date: Wed Jan 13 10:16:13 2010 +0100 fix bug on getVpzFile commit d3cf10e27ee44e0ab8264f2603b195408d6e5301 Author: Eric Ramat <ramat@lil.univ-littoral.fr> Date: Wed Dec 16 16:49:40 2009 +0100 Fix bug on name of clearConditionPort method. commit 1f458ece1ef78fec7a112c644d633c6d8e6c435c Author: Eric Ramat <ramat@lil.univ-littoral.fr> Date: Mon Oct 5 09:38:13 2009 +0200 Unify method names of pyvle and rvle commit dc744ddb030936935917f2ee0b0354e43877b943 Author: Daniel Salome <dansal62@users.sourceforge.net> Date: Fri Jul 17 10:09:00 2009 +0200 Edition of replicas and replicas seed Now users can edit replicas number and replicas seed if vpz is compatible Compatibility can be enabled while importing commit 71c63b7e391de1b7b96348a0386a5fa5ad2620ba Author: Daniel Salome <dansal62@users.sourceforge.net> Date: Wed Jul 15 15:54:44 2009 +0200 Combination run mode Now experiments can be run for one combination only commit 31cc4dd1f65a13861655dfb5ac907748985a4636 Author: Daniel Salome <dansal62@users.sourceforge.net> Date: Fri Jul 10 17:28:59 2009 +0200 Make vpz compatible with vle-web while import Now vpz output plugins are set to storage while importing if user decide it commit a699d1e2335de5f343cd9f6208ccc1050533b327 Author: Daniel Salome <dansal62@users.sourceforge.net> Date: Thu Jul 9 17:00:33 2009 +0200 VLE packages management Now vle-web can manage VLE packages All the functionalities are provided in normal and package mode commit 3038d36b52586d04759d9c1add7e4dd3607ee74b Author: Daniel Salome <dansal62@users.sourceforge.net> Date: Fri Jul 3 11:52:38 2009 +0200 Displaying multiple models conditions in preview mode Now if a dynamic owns multiple atomic models, all condition ports are displayed instead of random condition ports commit 75d30f898ec2058a313b84d42e2ec79e77f9765a Author: Daniel Salome <dansal62@users.sourceforge.net> Date: Tue Jun 30 15:18:08 2009 +0200 Run error management When an execution fails, error trace details is displayed commit afeb070aa88ba203b6e4b925e6b1a57157134bcc Author: Daniel Salome <dansal62@users.sourceforge.net> Date: Tue Jun 16 16:52:28 2009 +0200 New functions for exportation * Needed functions for exporting experiment results commit 3ad78a439b161d5ed397f5958f4da9903935bcfe Author: Eric Ramat <ramat@lil.univ-littoral.fr> Date: Mon Jun 8 19:35:24 2009 +0200 Add combinaisons method commit b0a995f55ee0b93a3f75507d47262f9a9bcb9c3d Author: Daniel Salome <dansal62@users.sourceforge.net> Date: Fri Jun 5 15:17:42 2009 +0200 Functions for graphical plan execution * Count the number of experiment replicas commit e71704ae45d268aed2729dec4ec0959a58c78bb0 Author: Daniel Salome <dansal62@users.sourceforge.net> Date: Wed Jun 3 09:37:31 2009 +0200 Port Attached Views Listing * Adding a function to get a list of attached views from a port commit 5792bc084563b387620934f5e778561a1cb43c7a Author: Daniel Salome <dansal62@users.sourceforge.net> Date: Wed May 27 09:59:35 2009 +0200 Management of boolean parameters * Now boolean parameters can be set or added commit a1541bf92c8711f875edb6ee228892992c5a47e7 Author: Daniel Salomé <dansal62@users.sourceforge.net> Date: Fri May 22 11:51:13 2009 +0200 Experiment export Experiment export into csv, text, and rdata commit 4a47bc11b6a46f34f07aece6af4b8f95ac991445 Author: Daniel Salomé <dansal62@users.sourceforge.net> Date: Tue May 19 10:28:57 2009 +0200 Correction of seed and duration set functions * Function name for setting a duration or seed is wrong commit cb15c683b0f5b4994e42ec3fc393730acdac00ae Author: Daniel Salomé <dansal62@users.sourceforge.net> Date: Fri May 15 16:24:47 2009 +0200 Functions for experiment graphical run * Some functions in order to parameter graphical experiment run have been added commit 5e65d453608c1f88616644a1ffc71447be965295 Author: Daniel Salomé <dansal62@users.sourceforge.net> Date: Wed May 6 09:53:51 2009 +0200 Condition parameter value management * Parameter value can be set * Parameter value type can be got * Parameter value can be deleted * Parameter value set can be got commit 4d24316e87e8a69b569926460ca4dd7aff8aecb6 Author: Daniel Salomé <dansal62@users.sourceforge.net> Date: Mon May 4 17:53:13 2009 +0200 Adding prefix to seed and duration methods in pyvle.py "experiment_" prefix was missing in get_seed, set_seed, get_duration and set_duration methods in pyvle.py commit cdc1f7ba22a6a3dfcaa421b3fe45002b488ff5f8 Author: Daniel Salomé <dansal62@users.sourceforge.net> Date: Wed Apr 29 10:15:30 2009 +0200 Vpz observables management * Observables can be listed * Observables list can be cleared * Observables can be added or deleted * Observable views can be listed * Observable port name can be shown * Observable ports can be added or deleted * Observable permanent status can be shown or set commit 7b56cc169ba71d0c731c00436a25bc0b8350773d Author: Eric Ramat <ramat@lil.univ-littoral.fr> Date: Tue Apr 28 12:18:37 2009 +0200 Migration to vle 0.8 commit 2e7e5b63ec8867d8a0f97264550b83d93100117e Author: Daniel Salomé <dansal62@users.sourceforge.net> Date: Fri Apr 24 10:54:20 2009 +0200 Vpz view management * Views can be listed * View name, type, output, data, timestep can be shown * View name, type, data, timestep can be set * Views can be added : timed, event or finish views commit eb26d9ab7d19e5ee3586aa31924e6a781e560311 Author: Daniel Salomé <dansal62@users.sourceforge.net> Date: Mon Apr 20 14:32:44 2009 +0200 Management of vpz dynamics * Dynamics can be listed * Dynamic name can be viewed * Dynamic model can be viewed/set * Dynamic library can be viewed/set * Dynamic language can be viewed/set commit 9adef4d0ebb7d911195bb5440a491faf82f69989 Author: Eric Ramat <ramat@lil.univ-littoral.fr> Date: Mon Mar 2 11:22:32 2009 +0100 Fix: the thread system not initialized commit 7633b849c141645c188ad734cd24378b89239f4b Author: Eric Ramat <ramat@lil.univ-littoral.fr> Date: Fri Jan 30 17:13:54 2009 +0100 Change separator in column name of result commit ba56d2b308129ae14f73af28a81727702e471238 Author: Eric Ramat <ramat@lil.univ-littoral.fr> Date: Wed Jan 28 18:41:55 2009 +0100 Add pyvle.py with a class Vle and add some new methods commit 62f0ee0be697925a03ed2e6df17c5b211bc32d25 Author: Eric Ramat <ramat@lil.univ-littoral.fr> Date: Wed Jan 28 12:06:31 2009 +0100 Fix: wrong time in matrix result commit 34b751ae854746dccbd1ff104684a01877263385 Author: Grégory Wisniewski <codidex@gmail.com> Date: Fri Jan 23 00:29:49 2009 +0100 Migration to vle 0.7 * ValueBase renamed as Value * MatrixFactory renamed as Matrix * vle::value::MatrixFactory::ConstMatrixView moved to vle::value::ConstMatrixView * DoubleFactory renamed as Double * IntegerFactory renamed as Integer * Some arguments are passed with references instead to pointers commit 0c45340ac88b79624b32412ae4c3d0a326b73f2c Author: Eric Ramat <ramat@lil.univ-littoral.fr> Date: Sat Jun 7 19:28:54 2008 +0200 Bug fix: init thread commit 16b23cf71023b20cd3ab495a88723c630f11e654 Author: Eric Ramat <ramat@lil.univ-littoral.fr> Date: Sat Jun 7 09:20:44 2008 +0200 Bug fix: wrong line commit 21058473cbe336e2f5666aa5609f5375d272317a Author: Eric Ramat <ramat@lil.univ-littoral.fr> Date: Sat Jun 7 09:10:19 2008 +0200 Add time column into map commit 2babf8250743d137b25826dad442765a0ef17250 Author: Eric Ramat <ramat@lil.univ-littoral.fr> Date: Sat Jun 7 09:03:57 2008 +0200 Modify comment of convert functions commit 4c47f15837015a2f6f02682d0858c55e8382d453 Author: Eric Ramat <ramat@lil.univ-littoral.fr> Date: Sat Jun 7 08:56:44 2008 +0200 Add files to project. commit db0dc9e74f7f9609cd7c043764d3ed9b7daf94b7 Author: Eric Ramat <ramat@lil.univ-littoral.fr> Date: Fri Jun 6 15:58:56 2008 +0200 Initial commit