Skip to content

Commit e851938

Browse files
committed
Fix includes after clang-format rearragement
1 parent 30f62b9 commit e851938

File tree

4 files changed

+18
-0
lines changed

4 files changed

+18
-0
lines changed

src/ic3/aux_types.hh

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,14 @@ Author: Eugene Goldberg, eu.goldberg@gmail.com
66
77
******************************************************/
88

9+
#pragma once
10+
11+
#include <queue>
912
#include <string>
1013

14+
#include "minisat/core/Solver.h"
15+
#include "minisat/simp/SimpSolver.h"
16+
1117
#ifndef UNUSED
1218
#ifdef _MSC_VER
1319
#define UNUSED

src/ic3/dnf_io.hh

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,13 @@ Author: Eugene Goldberg, eu.goldberg@gmail.com
77
88
******************************************************/
99

10+
#pragma once
11+
12+
#include <deque>
1013
#include <iosfwd>
14+
#include <map>
15+
#include <set>
16+
#include <vector>
1117

1218
typedef std::vector<int> CUBE;
1319
typedef std::vector<CUBE> DNF;

src/ic3/m0ic3.hh

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ Module: IC3 types
55
Author: Eugene Goldberg, eu.goldberg@gmail.com
66
77
******************************************************/
8+
89
#include "aux_types.hh"
910

1011
extern int debug_flag;

src/ic3/seq_circ/ccircuit.hh

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,11 @@ Module: Basic types (gate, circuit and so on)
66
Author: Eugene Goldberg, eu.goldberg@gmail.com
77
88
******************************************************/
9+
10+
#pragma once
11+
12+
#include "dnf_io.hh"
13+
914
struct ConstrGateInfo {
1015
unsigned neg_lit:1;
1116
unsigned fun_coi:1;

0 commit comments

Comments
 (0)