Issue1035

Title M&S: remove time and memory from dot graph output
Priority wish Status resolved
Superseder Nosy List jendrik, malte, silvan
Assigned To Keywords
Optional summary

Created on 2021-08-25.22:06:49 by jendrik, last changed by jendrik.

Messages
msg10418 (view) Author: jendrik Date: 2021-08-27.21:53:58
I thought this was just an oversight and the solution would be to use "cout" again. But I remember now that we wanted to always use the logger for all output. So from my side we don't need to change anything here, my editor can also handle this :-)
msg10417 (view) Author: malte Date: 2021-08-26.14:27:47
Or use a better editor, like emacs. ;-)

Do you have a concrete design in mind? A simple idea would be to allow silencing the timestamps/memory info altogether on a global basis, assuming this is not already possible.
msg10416 (view) Author: jendrik Date: 2021-08-25.22:06:48
The dot graph output for M&S transition systems currently looks like

[t=0.00223434s, 7892 KB] digraph transition_system_0 {
[t=0.00227151s, 7892 KB]     node [shape = none] start;
[t=0.00230228s, 7892 KB]     node [shape = doublecircle] node0;
[t=0.00233223s, 7892 KB]     start -> node0;
[t=0.00236238s, 7892 KB]     node [shape = doublecircle] node1;
[t=0.00239189s, 7892 KB]     node1 -> node1 [label = x0];
[t=0.00242153s, 7892 KB]     node0 -> node0 [label = x1];
[t=0.0024508s, 7892 KB]     node1 -> node0 [label = x2];
[t=0.00247995s, 7892 KB]     node0 -> node1 [label = x3];
[t=0.00250924s, 7892 KB] }

I think for easier copy-pasting the time and memory info should be removed.
History
Date User Action Args
2021-08-27 21:53:58jendriksetstatus: chatting -> resolved
messages: + msg10418
2021-08-26 14:27:47maltesetstatus: unread -> chatting
messages: + msg10417
2021-08-25 22:06:49jendrikcreate