修改部分数据结构
This commit is contained in:
parent
d613341d1c
commit
67443cbde9
16
circuit.cpp
16
circuit.cpp
@ -3,7 +3,19 @@
|
|||||||
#include <queue>
|
#include <queue>
|
||||||
#include <unordered_map>
|
#include <unordered_map>
|
||||||
|
|
||||||
void Circuit::cal_topo_index() {
|
|
||||||
|
void Circuit::init_stems() {
|
||||||
|
for(auto& gate: gates) {
|
||||||
|
if(gate->outputs.size() >= 2) {
|
||||||
|
stems.push_back(gate);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
for(auto &gate : PIs) {
|
||||||
|
stems.push_back(gate);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
void Circuit::init_topo_index() {
|
||||||
int topo = 1;
|
int topo = 1;
|
||||||
std::queue<Gate*> q;
|
std::queue<Gate*> q;
|
||||||
|
|
||||||
@ -81,3 +93,5 @@ int Circuit::cal_gate_value(const Gate* &gate) {
|
|||||||
}
|
}
|
||||||
return res;
|
return res;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
19
circuit.h
19
circuit.h
@ -14,14 +14,31 @@ public:
|
|||||||
std::vector<Gate*> inputs;
|
std::vector<Gate*> inputs;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
class Fault {
|
||||||
|
public:
|
||||||
|
Gate* gate;
|
||||||
|
enum Type { SA0, SA1 } type;
|
||||||
|
Fault(Gate* gate, Type type):gate(gate),type(type) {}
|
||||||
|
};
|
||||||
|
|
||||||
class Circuit {
|
class Circuit {
|
||||||
public:
|
public:
|
||||||
std::vector<Gate*> PIs;
|
std::vector<Gate*> PIs;
|
||||||
std::vector<Gate*> POs;
|
std::vector<Gate*> POs;
|
||||||
std::vector<Gate*> gates;
|
std::vector<Gate*> gates;
|
||||||
|
std::vector<Gate*> stems;// PI + stems
|
||||||
|
|
||||||
std::unordered_map<std::string, Gate*> name2gate;
|
std::unordered_map<std::string, Gate*> name2gate;
|
||||||
void parse_from_file(const char *filename);
|
void parse_from_file(const char *filename);
|
||||||
int cal_gate_value(const Gate* &gate);
|
int cal_gate_value(const Gate* &gate);
|
||||||
void cal_topo_index();
|
void init_topo_index();
|
||||||
|
void init_stems();
|
||||||
|
|
||||||
|
// local search
|
||||||
|
std::vector<int> local_search(const std::vector<Fault*> &faults);
|
||||||
|
|
||||||
|
void ls_init_circuit();
|
||||||
|
void ls_init_vector(std::vector<Gate*> *vec);
|
||||||
|
|
||||||
|
|
||||||
};
|
};
|
28
ls.cpp
28
ls.cpp
@ -1,35 +1,17 @@
|
|||||||
#include "ls.h"
|
#include "circuit.h"
|
||||||
|
|
||||||
|
std::vector<int> Circuit::local_search(const std::vector<Fault*> &faults) {
|
||||||
std::vector<int> local_search(Circuit* circuit) {
|
|
||||||
|
|
||||||
// local search vector
|
// local search vector
|
||||||
std::vector<Gate*> vec;
|
ls_init_circuit();
|
||||||
|
|
||||||
init_vector(circuit, &vec);
|
|
||||||
|
|
||||||
init_circuit(circuit);
|
|
||||||
|
|
||||||
printf("local search!\n");
|
printf("local search!\n");
|
||||||
|
|
||||||
return std::vector<int>();
|
return std::vector<int>();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void Circuit::ls_init_circuit() {
|
||||||
void init_circuit(Circuit* circuit) {
|
for(auto pi : PIs) {
|
||||||
for(auto pi : circuit->PIs) {
|
|
||||||
pi->value = rand() % 2;
|
pi->value = rand() % 2;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
void init_vector(Circuit* circuit, std::vector<Gate*> *vec) {
|
|
||||||
for(auto pi : circuit->PIs) {
|
|
||||||
vec->push_back(pi);
|
|
||||||
}
|
|
||||||
for(auto gate : circuit->gates) {
|
|
||||||
// fanout stem
|
|
||||||
if(gate->outputs.size() >= 2) {
|
|
||||||
vec->push_back(gate);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
9
ls.h
9
ls.h
@ -1,9 +0,0 @@
|
|||||||
#pragma once
|
|
||||||
|
|
||||||
#include "circuit.h"
|
|
||||||
|
|
||||||
std::vector<int> local_search(Circuit* circuit);
|
|
||||||
|
|
||||||
// private
|
|
||||||
void init_circuit(Circuit* circuit);
|
|
||||||
void init_vector(Circuit* circuit, std::vector<Gate*> *vec);
|
|
32
main.cpp
32
main.cpp
@ -3,7 +3,6 @@
|
|||||||
#include <assert.h>
|
#include <assert.h>
|
||||||
|
|
||||||
#include "circuit.h"
|
#include "circuit.h"
|
||||||
#include "ls.h"
|
|
||||||
|
|
||||||
int main(int args, char* argv[]) {
|
int main(int args, char* argv[]) {
|
||||||
|
|
||||||
@ -12,31 +11,32 @@ int main(int args, char* argv[]) {
|
|||||||
exit(1);
|
exit(1);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
srand(19260817);
|
||||||
|
|
||||||
Circuit circuit;
|
Circuit circuit;
|
||||||
|
|
||||||
printf("parsing file %s...\n", argv[1]);
|
printf("parsing file %s ...", argv[1]);
|
||||||
circuit.parse_from_file(argv[1]);
|
circuit.parse_from_file(argv[1]);
|
||||||
|
circuit.init_stems();
|
||||||
|
circuit.init_topo_index();
|
||||||
|
printf(" Done.\n");
|
||||||
|
|
||||||
printf("====== Circuit Statistics ====== \n");
|
printf("====== Circuit Statistics ====== \n");
|
||||||
printf("PI:\t%ld\n", circuit.PIs.size());
|
printf("PI:\t%ld\n", circuit.PIs.size());
|
||||||
printf("PO:\t%ld\n", circuit.POs.size());
|
printf("PO:\t%ld\n", circuit.POs.size());
|
||||||
printf("Gates:\t%ld\n", circuit.name2gate.size());
|
printf("Gate:\t%ld\n", circuit.name2gate.size());
|
||||||
|
printf("Stem:\t%ld\n", circuit.stems.size());
|
||||||
|
printf("================================ \n");
|
||||||
|
|
||||||
int cnt = 0;
|
std::vector<Fault*> faults;
|
||||||
for(auto& gate: circuit.gates) {
|
|
||||||
if(gate->outputs.size() > 2) {
|
|
||||||
cnt++;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
printf("Stem:\t%d\n", cnt);
|
|
||||||
|
|
||||||
printf("cal topo index ...\n");
|
// init faults
|
||||||
circuit.cal_topo_index();
|
for(auto stem : circuit.stems) {
|
||||||
for(Gate* gate : circuit.gates) {
|
faults.push_back(new Fault(stem, Fault::SA0));
|
||||||
assert(gate->topo > 0);
|
faults.push_back(new Fault(stem, Fault::SA1));
|
||||||
}
|
}
|
||||||
|
|
||||||
srand(19260817);
|
auto pattern = circuit.local_search(faults);
|
||||||
local_search(&circuit);
|
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
Loading…
x
Reference in New Issue
Block a user