- **Breaking**: The `filled`, `landscape`, and `centered` fields of the
`layout_t` struct are now C99 `bool`s instead of Graphviz-specific `boolean`s.
- **Breaking**: The `has_images`, `has_flat_edges`, `has_sourcerank`,
- `has_sinkrank`, and `expanded` fields of the `Agraphinfo_t` struct are now C99
- `bool`s instead of Graphviz-specific `boolean`s.
+ `has_sinkrank`, `expanded`, and `exact_ranksep` fields of the `Agraphinfo_t`
+ struct are now C99 `bool`s instead of Graphviz-specific `boolean`s.
- **Breaking**: Graphviz headers no longer define the constant `MAXSHORT`. A
drop-in replacement is `SHRT_MAX` in the C standard library’s limits.h.
- **Breaking**: Graphviz headers no lnger define `NIL` macros. A drop-in
xf = MIN_RANKSEP;
}
if (strstr(p, "equally"))
- GD_exact_ranksep(g) = TRUE;
+ GD_exact_ranksep(g) = true;
} else
xf = DEFAULT_RANKSEP;
GD_ranksep(g) = POINTS(xf);