Skip to main content

ToleranceReport

Kind: Class
Domain: Expressions, units, and tolerances
Canonical import: from cadflow import ToleranceReport

Signature

class ToleranceReport(checks: 'Tuple[ToleranceCheck, ...]' = ()) -> None

Description

Validation report for every requirement in a tolerance graph.

Parameters

NameTypeRequiredDefaultSource description
checks'Tuple[ToleranceCheck, ...]'no()Not explicitly described in the source docstring.

Returns

Type: None

The source docstring does not declare additional return semantics.

Errors

The source docstring does not declare a narrower exception contract. Invalid types, values, ownership, paths, or backend state may still raise the corresponding public error.

Data fields

NameTypeDefault
checks'Tuple[ToleranceCheck, ...]'()

Public members

MemberKindSignatureDescription
passedproperty-See the member signature.
to_dictmethod(self) -> 'Dict[str, Any]'See the member signature.

Behavior and constraints

  • Instances are immutable dataclass values; update workflows return a replacement value.

Import check

from cadflow import ToleranceReport

See also