Module Values.AutomatedReasoningCheckValidFindingSource

Indicates that the claims are definitively true and logically implied by the premises, with no possible alternative interpretations.

Sourcetype nonrec t = {
  1. translation : AutomatedReasoningCheckTranslation.t option;
    (*

    The logical translation of the input that this finding validates.

    *)
  2. claimsTrueScenario : AutomatedReasoningCheckScenario.t option;
    (*

    An example scenario demonstrating how the claims are logically true.

    *)
  3. supportingRules : AutomatedReasoningCheckRuleList.t option;
    (*

    The automated reasoning policy rules that support why this result is considered valid.

    *)
  4. logicWarning : AutomatedReasoningCheckLogicWarning.t option;
    (*

    Indication of a logic issue with the translation without needing to consider the automated reasoning policy rules.

    *)
}
Sourceval make : ?translation:??? -> ?claimsTrueScenario:??? -> ?supportingRules:??? -> ?logicWarning:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Structure of (string * [> `String of AutomatedReasoningPolicyDefinitionRuleId.t ]) list ] list | `Structure of (string * [> `Double of AutomatedReasoningCheckTranslationConfidence.t | `Enum of string | `List of [> `Structure of (string * [> `String of AutomatedReasoningLogicStatementContent.t ]) list ] list ]) list ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t