chore(*): fix tests and style

This commit is contained in:
Leonardo de Moura 2017-02-20 23:53:44 -08:00
parent 87eaedc580
commit 04fd50e4e8
4 changed files with 6 additions and 0 deletions

View file

@ -5,6 +5,7 @@ Released under Apache 2.0 license as described in the file LICENSE.
Author: Leonardo de Moura
*/
#pragma once
#include <utility>
#include <memory>
#include <algorithm>
#include "util/memory_pool.h"

View file

@ -4,6 +4,7 @@ Released under Apache 2.0 license as described in the file LICENSE.
Author: Leonardo de Moura
*/
#include <vector>
#include "library/parray.h"
#include "library/vm/vm.h"
#include "library/vm/vm_nat.h"

View file

@ -4,6 +4,7 @@ Released under Apache 2.0 license as described in the file LICENSE.
Author: Leonardo de Moura
*/
#include <utility>
#include <random>
#include <vector>
#include "util/test.h"

View file

@ -1,3 +1,4 @@
namespace hide
constant array : Type
constant read : array → nat → nat
constant write : array → nat → nat → array
@ -16,3 +17,5 @@ read a5 4 = read a1 4
begin [smt]
intros, eblast
end
end hide