mirror of
https://github.com/Z3Prover/z3
synced 2025-05-12 02:04:43 +00:00
23 lines
306 B
C++
23 lines
306 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 "math/automata/automaton.h"
|
|
|
|
template class automaton<unsigned>;
|