1 #!/usr/bin/env python3 2 # SPDX-License-Identifier: GPL-2.0-only 3 # 4 # Copyright (C) 2019-2022 Red Hat, Inc. Daniel< 5 # 6 # dot2c: parse an automata in dot file digraph 7 # 8 # This program was written in the development 9 # de Oliveira, D. B. and Cucinotta, T. and de 10 # "Efficient Formal Verification for the Linu 11 # Conference on Software Engineering and Form 12 # 13 # For further information, see: 14 # Documentation/trace/rv/deterministic_autom 15 16 if __name__ == '__main__': 17 from dot2 import dot2c 18 import argparse 19 import sys 20 21 parser = argparse.ArgumentParser(descripti 22 parser.add_argument('dot_file', help='The 23 24 args = parser.parse_args() 25 d = dot2c.Dot2c(args.dot_file) 26 d.print_model_classic()
Linux® is a registered trademark of Linus Torvalds in the United States and other countries.
TOMOYO® is a registered trademark of NTT DATA CORPORATION.