import-trace: dropped DCiAOKernelImporter

This importer is so similar to the basic importer, that it can be
dropped. The current state was used in the SOBRES 2013 Paper.

Change-Id: Ibed1af6e1a72286500d42e83e594557d6dcf3803
This commit is contained in:
Christian Dietrich
2013-05-31 11:07:14 +02:00
parent cfa311979e
commit 81fe0ea628
4 changed files with 0 additions and 168 deletions

View File

@ -10,7 +10,6 @@
#include <string>
#include "BasicImporter.hpp"
#include "DCiAOKernelImporter.hpp"
using namespace fail;
@ -118,9 +117,6 @@ int main(int argc, char *argv[]) {
if (imp == "BasicImporter") {
LOG << "Using BasicImporter" << endl;
importer = new BasicImporter();
} else if (imp == "DCiAOKernelImporter") {
LOG << "Using DCiAOKernelImporter" << endl;
importer = new DCiAOKernelImporter();
} else {
LOG << "Unkown import method: " << imp << endl;
exit(-1);