Skip to content

Commit 820ca86

Browse files
committed
Move the cllazyfile headers, trim down judy arrays
I'm not sure if this logic was ever brought to a production level - needs investigateion... maybe we should just arcive it if there isn't any active development? Regardless, there appears to be no upstream activity on the judy code, so just make it a part of cllazy directly.
1 parent f9f5c71 commit 820ca86

40 files changed

Lines changed: 63 additions & 3188 deletions

include/lazy/CMakeLists.txt

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,18 @@
11
set(LAZY_HDRS
2-
2+
headerSectionReader.h
3+
lazyFileReader.h
4+
lazyP21DataSectionReader.h
5+
p21HeaderSectionReader.h
6+
lazyDataSectionReader.h
7+
lazyInstMgr.h
8+
lazyTypes.h
9+
sectionReader.h
10+
instMgrHelper.h
11+
judy.h
12+
judyL2Array.h
13+
judyLArray.h
14+
judyS2Array.h
15+
judySArray.h
316
)
417

518
install(FILES ${LAZY_HDRS}
Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@
55
#include <fstream>
66

77
#include "judyL2Array.h"
8-
#include "lazyFileReader.h"
9-
#include "sectionReader.h"
10-
#include "lazyTypes.h"
8+
#include "lazy/lazyFileReader.h"
9+
#include "lazy/sectionReader.h"
10+
#include "lazy/lazyTypes.h"
1111

1212
#include "sc_export.h"
1313

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
#include <sc_export.h>
55

66
#include "core/mgrnode.h"
7-
#include <lazyInstMgr.h>
7+
#include "lazy/lazyInstMgr.h"
88
#include "core/instmgr.h"
99

1010
/**
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33

44
#include <map>
55
#include <iostream>
6-
#include "sectionReader.h"
7-
#include "lazyTypes.h"
6+
#include "lazy/sectionReader.h"
7+
#include "lazy/lazyTypes.h"
88

99
#include "sc_export.h"
1010

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@
88
#include "sc_export.h"
99

1010
// PART 21
11-
#include "lazyP21DataSectionReader.h"
12-
#include "p21HeaderSectionReader.h"
13-
#include "headerSectionReader.h"
11+
#include "lazy/lazyP21DataSectionReader.h"
12+
#include "lazy/p21HeaderSectionReader.h"
13+
#include "lazy/headerSectionReader.h"
1414

1515
/* // PART 28
1616
* #include "lazyP28DataSectionReader.h"

0 commit comments

Comments
 (0)