Megatest

Check-in [fd375bd1a1]
Login
Overview
Comment:Added missing graphviz file
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | v1.65-debugging-update-orig
Files: files | file ages | folders
SHA1: fd375bd1a1f68da0fc3a938a6ac159d59ba5e63c
User & Date: matt on 2021-09-07 19:49:13
Other Links: branch diff | manifest | tags
Context
2021-09-07
21:01
Added more debugging info check-in: 21da809595 user: matt tags: v1.65-debugging-update-orig
19:49
Added missing graphviz file check-in: fd375bd1a1 user: matt tags: v1.65-debugging-update-orig
19:40
merged-fork check-in: 1059bb1046 user: matt tags: v1.65-debugging-update-orig
Changes

Added docs/manual/bisecting.dot version [01396be470].































































>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
//  Copyright 2021, Matthew Welland.
// 
// This file is part of Megatest.
// 
//     Megatest is free software: you can redistribute it and/or modify
//     it under the terms of the GNU General Public License as published by
//     the Free Software Foundation, either version 3 of the License, or
//     (at your option) any later version.
// 
//     Megatest is distributed in the hope that it will be useful,
//     but WITHOUT ANY WARRANTY; without even the implied warranty of
//     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
//     GNU General Public License for more details.
// 
//     You should have received a copy of the GNU General Public License
//     along with Megatest.  If not, see <http://www.gnu.org/licenses/>.
//
digraph G {
    rankdir=LR
    subgraph cluster_1 {
        node [style=filled,shape=box];

	B [label="B\nProblem is here"];
	E [label="E\nProblem manifests here"];
	A -> B;
	B -> C;
	C -> D;
	D -> E;
    }

}