GithubHelp home page GithubHelp logo

vle-forge / packages Goto Github PK

View Code? Open in Web Editor NEW
3.0 3.0 7.0 27.53 MB

Packages for VLE: output, subformalisms, examples

Shell 0.02% CMake 2.08% C++ 23.75% C 3.13% R 0.01% QMake 0.26% HTML 62.13% CSS 0.22% JavaScript 3.09% Roff 5.24% DM 0.05% Batchfile 0.01%
inra vle

packages's People

Contributors

chabrier avatar quesnel avatar remimahmoud avatar rtrepos avatar

Stargazers

 avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar

packages's Issues

ouput: flushbybag bug

due to the prided new flushbybag option of the File and Console output oov plugin
"vle -P vle.examples test" fail.

A test of the availability of the simulator name was not correctly used.
A question remain, in which case the simulator name is not available?

pkg configure error (vle-1.1.0-beta1)

After successfully installing vle-1.1.0-beta1 on a new Ubuntu 12.04 virtual machine I get the following error when installing the extension packages :

record@record-VirtualBox:~/Documents/packagesvle-1.1.0-beta1$ vle -P vle.output/ configure
-- The CXX compiler identification is GNU
-- The C compiler identification is GNU
-- Check for working CXX compiler: /usr/bin/c++
-- Check for working CXX compiler: /usr/bin/c++ -- works
-- Detecting CXX compiler ABI info
-- Detecting CXX compiler ABI info - done
-- Check for working C compiler: /usr/bin/gcc
-- Check for working C compiler: /usr/bin/gcc -- works
-- Detecting C compiler ABI info
-- Detecting C compiler ABI info - done
-- checking for module 'vle-1.1'
-- found vle-1.1, version 1.1.0
CMake Error at /usr/share/cmake-2.8/Modules/FindPackageHandleStandardArgs.cmake:91 (MESSAGE):
Could NOT find VLE (missing: VLE_LIBRARY_DIRS)
Call Stack (most recent call first):
/usr/share/cmake-2.8/Modules/FindPackageHandleStandardArgs.cmake:252 (_FPHSA_FAILURE_MESSAGE)
cmake/FindVLE.cmake:142 (FIND_PACKAGE_HANDLE_STANDARD_ARGS)
CMakeLists.txt:49 (find_package)

-- Configuring incomplete, errors occurred!

Forrester: Adding a dashboard view

This dashboard should enable to configure for each class of entity but also for each entity,

If they are usable, without to be linked explicitly.

If they are observable (in the sens of vle)

If they are visible on the diagram.

A default policy will be furnished.

Differential: initialisation of variables

Variables initialisation should be simplified.
A map "variables" containing for each var a value is expected.
The variable could be initialised, using directly the InitEventList as the container.

Forrester: bad screen refreshment

When during a single modeling session, the user goes back to the Forrester plugin, the previous model can still be visible on the background of the current one.

Decision : provide a way to clear the plan of the KB

In the current version there is a removeActivity method available in KnowledgeBase (but no removeRule), that allow to remove individual activities from their name.

It could be handy to have a method that remove all activities and rules at once.

A use of this would be to load several times the same plan using different relative years. (in the current version the activities and rules names are conflicting because they should be unique)

vle.extension.differential-equation: CMake error

I fail to build vle.extension.differential-equation:

$ vle -P vle.extension.differential-equation clean rclean configure build
-- The CXX compiler identification is GNU 4.8.2
-- The C compiler identification is GNU 4.8.2
-- Check for working CXX compiler: /usr/bin/c++
-- Check for working CXX compiler: /usr/bin/c++ -- works
-- Detecting CXX compiler ABI info
-- Detecting CXX compiler ABI info - done
-- Check for working C compiler: /usr/bin/cc
-- Check for working C compiler: /usr/bin/cc -- works
-- Detecting C compiler ABI info
-- Detecting C compiler ABI info - done
-- Found PkgConfig: /usr/bin/pkg-config (found version "0.26") 
-- checking for module 'vle-1.3'
--   found vle-1.3, version 1.3.0
-- Found VLE: /media/Stock/usr/include/vle-1.3;/usr/include/libxml2;/usr/include/glibmm-2.4;/usr/lib/x86_64-linux-gnu/glibmm-2.4/include;/usr/include/sigc++-2.0;/usr/lib/x86_64-linux-gnu/sigc++-2.0/include;/usr/include/glib-2.0;/usr/lib/x86_64-linux-gnu/glib-2.0/include  
CMake Error at cmake/VleUtilsConfig.cmake:222 (string):
  string sub-command REGEX, mode REPLACE needs at least 6 arguments total to
  command.
Call Stack (most recent call first):
  cmake/VleUtilsConfig.cmake:340 (IntVleBuildDepends)
  CMakeLists.txt:58 (VleCheckDependencies)


-- Boost version: 1.55.0
-- Found the following Boost libraries:
--   unit_test_framework
--   date_time
-- Could NOT find Doxygen (missing:  DOXYGEN_EXECUTABLE) 
-- Configuring incomplete, errors occurred!
See also "/media/Stock/devel/vle/packages/vle.extension.differential-equation/buildvle/CMakeFiles/CMakeOutput.log".

vle.output: improve storage configuration plugin

The plugin for configuring vle.output/storage could be improved. The parameters that can be set are number of rows and columns and the increase step associated to. It coud be improved in two ways :

  • set default values of these parameters to more realistic values. They are set to 1 which leads to resize the ouptut matrix (eg. number of rows) each time ther is à new observation; which is costly.
  • let the possibility to configure the header parameter ("top" means that the header is given on the first row of the matrix)

Glue v.s. Multiple.hpp error

Error in Multiple.hpp
the following line in Multiple must be public in class Multiple
typedef std::map < std::string, MultipleValues > MultipleValuesMap;
When it's private, glue do not compile

Or glue should not depend on private types of Multiple.

Decision plugin : ack function signature

In the signature of the ack function the 2 parameters (const std::string&/activityname/, const ved::Activity& /activity/) are commented and thus non-available for use in the function

Decision plugin : segfault when reopening the plugin

when re-opening the plugin on a generated model a segfault occurs
(reproductibility not very clear)
after restarting gvle the 1st opening of the plugin works fine but no more after closing the atomic model box

DifferntialEquation: bug on variables intiatialization

The initialization of variables using createVar(name, value) is erased due tto the fact that initialization relies on experimental conditions. This probem occurs when we initialize variable values into constructor.

Decision plugin : activity without temporal constrains

when the user don't want any temporal constrain to be used for a given activity, the plugin generate one anyway with a default value not very adapted.
It would be better to completly remove the temporal part of the activity in the "fichierPlan" when the user don't define any

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.