/** * Path and Cycle Properties * * Properties related to Hamiltonian paths and cycles. */ /** Hamiltonian cycle property */ export type Hamiltonian = { kind: "hamiltonian"; } | { kind: "non_hamiltonian"; } | { kind: "unconstrained"; }; /** Hamiltonian path property */ export type Traceable = { kind: "traceable"; } | { kind: "non_traceable"; } | { kind: "unconstrained"; }; //# sourceMappingURL=path-cycle.d.ts.map