mirror of
https://github.com/Z3Prover/z3
synced 2025-04-07 01:54:08 +00:00
24 lines
292 B
C++
24 lines
292 B
C++
/*++
|
|
Copyright (c) 2015 Microsoft Corporation
|
|
|
|
Module Name:
|
|
|
|
automaton.cpp
|
|
|
|
Abstract:
|
|
|
|
Symbolic Automaton, a la Margus Veanes Automata library.
|
|
|
|
Author:
|
|
|
|
Nikolaj Bjorner (nbjorner) 2015-12-23.
|
|
|
|
Revision History:
|
|
|
|
|
|
--*/
|
|
|
|
#include "automaton.h"
|
|
|
|
template class automaton<unsigned>;
|