Skip to content

Commit 00cee5f

Browse files
committed
Reordering includes.
1 parent 645d866 commit 00cee5f

File tree

7 files changed

+32
-33
lines changed

7 files changed

+32
-33
lines changed

src/opt/ufar/UfarCmd.cpp

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,17 +5,17 @@
55
* Author: Yen-Sheng Ho
66
*/
77

8+
#include <iostream>
9+
#include <iomanip>
10+
#include <climits>
11+
#include <regex>
12+
813
#include "base/wlc/wlc.h"
914
#include "opt/ufar/UfarCmd.h"
1015
#include "opt/ufar/UfarMgr.h"
1116
#include "opt/untk/NtkNtk.h"
1217
#include "opt/util/util.h"
1318

14-
#include <iostream>
15-
#include <iomanip>
16-
#include <climits>
17-
#include <regex>
18-
1919
ABC_NAMESPACE_IMPL_START
2020

2121
using namespace std;

src/opt/ufar/UfarMgr.cpp

Lines changed: 9 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -7,24 +7,22 @@
77

88
#include <cstdio>
99
#include <fstream>
10-
11-
#include "UfarMgr.h"
12-
#include "opt/untk/NtkNtk.h"
13-
#include "opt/util/util.h"
14-
15-
#include <base/wlc/wlc.h>
16-
#include <sat/cnf/cnf.h>
17-
#include <aig/gia/giaAig.h>
18-
19-
#include <sys/wait.h>
20-
2110
#include <iostream>
2211
#include <iomanip>
2312
#include <map>
2413
#include <algorithm>
2514
#include <array>
2615
#include <regex>
2716

17+
#include <sys/wait.h>
18+
19+
#include <base/wlc/wlc.h>
20+
#include <sat/cnf/cnf.h>
21+
#include <aig/gia/giaAig.h>
22+
#include "opt/untk/NtkNtk.h"
23+
#include "opt/util/util.h"
24+
#include "UfarMgr.h"
25+
2826
ABC_NAMESPACE_IMPL_START
2927

3028
using namespace std;

src/opt/ufar/UfarPth.cpp

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,16 @@
1-
#include "UfarPth.h"
2-
#include "opt/util/util.h"
3-
#include "opt/untk/NtkNtk.h"
4-
#include "sat/bmc/bmc.h"
5-
#include "proof/pdr/pdr.h"
6-
#include "aig/gia/giaAig.h"
71

82
#include "misc/util/abc_namespaces.h"
93

104
#include <pthread.h>
115
#include <unistd.h>
126

7+
#include "sat/bmc/bmc.h"
8+
#include "proof/pdr/pdr.h"
9+
#include "aig/gia/giaAig.h"
10+
#include "opt/util/util.h"
11+
#include "opt/untk/NtkNtk.h"
12+
#include "UfarPth.h"
13+
1314
ABC_NAMESPACE_IMPL_START
1415

1516
extern "C" {

src/opt/ufar/UfarPth.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@
55
#ifndef SRC_EXT2_UFAR_PTH_H
66
#define SRC_EXT2_UFAR_PTH_H
77

8-
#include "base/wlc/wlc.h"
98
#include <vector>
109
#include <string>
10+
#include "base/wlc/wlc.h"
1111

1212
ABC_NAMESPACE_CXX_HEADER_START
1313

src/opt/untk/Netlist.cpp

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,10 @@
22
// Created by Yen-Sheng Ho on 8/9/16.
33
//
44

5-
#include "Netlist.h"
5+
#include <iostream>
66

77
#include <base/wlc/wlc.h>
8-
9-
#include <iostream>
8+
#include "Netlist.h"
109

1110
ABC_NAMESPACE_IMPL_START
1211

src/opt/untk/NtkNtk.cpp

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -5,20 +5,20 @@
55
* Author: Yen-Sheng Ho
66
*/
77

8-
#include "NtkNtk.h"
9-
#include "Netlist.h"
10-
#include "opt/util/util.h"
11-
#include "opt/ufar/UfarPth.h"
8+
#include <unistd.h>
9+
#include <sys/wait.h>
10+
#include <fstream>
1211

1312
#include <base/wlc/wlc.h>
1413
#include <sat/bmc/bmc.h>
1514
#include <proof/pdr/pdr.h>
1615
#include <proof/fraig/fraig.h>
1716
#include <aig/gia/giaAig.h>
1817

19-
#include <unistd.h>
20-
#include <sys/wait.h>
21-
#include <fstream>
18+
#include "opt/util/util.h"
19+
#include "opt/ufar/UfarPth.h"
20+
#include "NtkNtk.h"
21+
#include "Netlist.h"
2222

2323
ABC_NAMESPACE_IMPL_START
2424

src/opt/untk/NtkNtk.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@
1414
#include <array>
1515
#include <sstream>
1616
#include <algorithm>
17+
1718
#include <base/wlc/wlc.h>
1819
#include "Netlist.h"
1920

0 commit comments

Comments
 (0)