File

src/app/model/api/model-checker-trace.ts

Description

Trace of the ModelChecking algorithm. Includes information about a checked formula and its children.

Index

Properties

Properties

children
children: ModelCheckerTrace[]
Type : ModelCheckerTrace[]
Optional
description
description: TranslationDTO
Type : TranslationDTO
formula
formula: string
Type : string
isModel
isModel: boolean
Type : boolean
shouldBeModel
shouldBeModel: boolean
Type : boolean
import { TranslationDTO } from 'src/app/model/dto/translation.dto';

/**
 * Trace of the ModelChecking algorithm.
 * Includes information about a checked formula and its children.
 */
export interface ModelCheckerTrace {
  formula: string;
  description: TranslationDTO;
  isModel: boolean;
  shouldBeModel: boolean;
  children?: ModelCheckerTrace[];
}

results matching ""

    No results matching ""