From 51b4f09bca802c4941700c78c5733ce968ddc7c6 Mon Sep 17 00:00:00 2001 From: Samo Penic <samo.penic@gmail.com> Date: Wed, 27 Feb 2019 22:44:22 +0000 Subject: [PATCH] An attempt of adding hard constraints plugin to the simulator. It seems it does not work yet --- src/plugins/demo_plugin.c | 18 +++++++++++++++++- 1 files changed, 17 insertions(+), 1 deletions(-) diff --git a/src/plugins/demo_plugin.c b/src/plugins/demo_plugin.c index 417c9c8..55ef832 100644 --- a/src/plugins/demo_plugin.c +++ b/src/plugins/demo_plugin.c @@ -6,13 +6,29 @@ char plugin_author[] = "SAMO PENIC"; ts_plugin_details *init (){ - ts_fprintf(stdout,"Hello. Plugin %s is initiating.\n\nThis will load the details section of the plugin\n", plugin_name); +// ts_fprintf(stdout,"Hello. Plugin %s is initiating. This will load the details section of the plugin\n", plugin_name); ts_plugin_details *details=(ts_plugin_details *)calloc(1,sizeof(ts_plugin_details)); details->name = plugin_name; return details; } + +void at_start(int argc, char **argv){ + ts_fprintf(stdout, "This will be run at the start of the program\n"); + ts_fprintf(stdout, "This plugin doesn't do anything useful :/. at_start function will be modified in the future!\n"); +} + + +void *after_vesicle_init(ts_vesicle *vesicle){ + ts_fprintf(stdout, "This function can modify vesicle before the start of the simulation. It has to return pointer to vesicle!!!\n"); + return vesicle; +} + +ts_bool vm_hard_constraint(ts_vesicle *vesicle, ts_vertex *vtx, ts_vertex *ovtx){ + return TS_SUCCESS; +} + void cleanup(){ ts_fprintf(stdout,"Goodbye from plugin %s. This functions clears what would be created in init...\n",plugin_name); } -- Gitblit v1.9.3