Skip to content

Commit

Permalink
Renaming
Browse files Browse the repository at this point in the history
  • Loading branch information
Bernhard Scholz authored and Bernhard Scholz committed Feb 19, 2018
1 parent a3986e3 commit b0f95fe
Show file tree
Hide file tree
Showing 9 changed files with 23 additions and 23 deletions.
10 changes: 5 additions & 5 deletions configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -253,11 +253,11 @@ AC_CONFIG_FILES([
tests/Makefile
tests/atlocal
])
AC_CONFIG_LINKS([include/souffle/CompiledRamOptions.h:src/CompiledRamOptions.h])
AC_CONFIG_LINKS([include/souffle/CompiledRamIndexUtils.h:src/CompiledRamIndexUtils.h])
AC_CONFIG_LINKS([include/souffle/CompiledRamRelation.h:src/CompiledRamRelation.h])
AC_CONFIG_LINKS([include/souffle/CompiledRamTuple.h:src/CompiledRamTuple.h])
AC_CONFIG_LINKS([include/souffle/CompiledRamRecord.h:src/CompiledRamRecord.h])
AC_CONFIG_LINKS([include/souffle/CompiledOptions.h:src/CompiledOptions.h])
AC_CONFIG_LINKS([include/souffle/CompiledIndexUtils.h:src/CompiledIndexUtils.h])
AC_CONFIG_LINKS([include/souffle/CompiledRelation.h:src/CompiledRelation.h])
AC_CONFIG_LINKS([include/souffle/CompiledTuple.h:src/CompiledTuple.h])
AC_CONFIG_LINKS([include/souffle/CompiledRecord.h:src/CompiledRecord.h])
AC_CONFIG_LINKS([include/souffle/CompiledSouffle.h:src/CompiledSouffle.h])
AC_CONFIG_LINKS([include/souffle/SouffleInterface.h:src/SouffleInterface.h])
AC_CONFIG_LINKS([include/souffle/ParallelUtils.h:src/ParallelUtils.h])
Expand Down
4 changes: 2 additions & 2 deletions src/CompiledRamIndexUtils.h → src/CompiledIndexUtils.h
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

/************************************************************************
*
* @file CompiledRamIndexUtils.h
* @file CompiledIndexUtils.h
*
* The central file covering the data structure utilized by
* the souffle compiler for representing relations in compiled queries.
Expand All @@ -19,7 +19,7 @@

#include "BTree.h"
#include "BinaryRelation.h"
#include "CompiledRamTuple.h"
#include "CompiledTuple.h"
#include "IterUtils.h"
#include "ParallelUtils.h"
#include "SymbolTable.h"
Expand Down
2 changes: 1 addition & 1 deletion src/CompiledRamOptions.h → src/CompiledOptions.h
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

/************************************************************************
*
* @file CompiledRamOptions.h
* @file CompiledOptions.h
*
* A header file offering command-line option support for compiled
* RAM programs.
Expand Down
4 changes: 2 additions & 2 deletions src/CompiledRamRecord.h → src/CompiledRecord.h
Original file line number Diff line number Diff line change
Expand Up @@ -8,15 +8,15 @@

/************************************************************************
*
* @file CompiledRamRecord.h
* @file CompiledRecord.h
*
* The central interface for handling records in the compiled execution.
*
***********************************************************************/

#pragma once

#include "CompiledRamTuple.h"
#include "CompiledTuple.h"
#include "ParallelUtils.h"
#include "Util.h"

Expand Down
6 changes: 3 additions & 3 deletions src/CompiledRamRelation.h → src/CompiledRelation.h
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

/************************************************************************
*
* @file CompiledRamRelation.h
* @file CompiledRelation.h
*
* The central file covering the data structure utilized by
* the souffle compiler for representing relations in compiled queries.
Expand All @@ -18,8 +18,8 @@
#pragma once

#include "BTree.h"
#include "CompiledRamIndexUtils.h"
#include "CompiledRamTuple.h"
#include "CompiledIndexUtils.h"
#include "CompiledTuple.h"
#include "IOSystem.h"
#include "IterUtils.h"
#include "ParallelUtils.h"
Expand Down
6 changes: 3 additions & 3 deletions src/CompiledSouffle.h
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,9 @@
#pragma once

#include "AstTypes.h"
#include "CompiledRamOptions.h"
#include "CompiledRamRecord.h"
#include "CompiledRamRelation.h"
#include "CompiledOptions.h"
#include "CompiledRecord.h"
#include "CompiledRelation.h"
#include "Logger.h"
#include "ParallelUtils.h"
#include "SignalHandler.h"
Expand Down
2 changes: 1 addition & 1 deletion src/CompiledRamTuple.h → src/CompiledTuple.h
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

/************************************************************************
*
* @file CompiledRamTuple.h
* @file CompiledTuple.h
*
* The central file covering the data structure utilized by
* the souffle compiler for representing relations in compiled queries.
Expand Down
10 changes: 5 additions & 5 deletions src/Makefile.am
Original file line number Diff line number Diff line change
Expand Up @@ -146,11 +146,11 @@ EXTRA_DIST = parser.yy scanner.ll test/test.h

soufflepublicdir = $(includedir)/souffle

soufflepublic_HEADERS = CompiledRamOptions.h \
CompiledRamIndexUtils.h \
CompiledRamRelation.h \
CompiledRamTuple.h \
CompiledRamRecord.h \
soufflepublic_HEADERS = CompiledOptions.h \
CompiledIndexUtils.h \
CompiledRelation.h \
CompiledTuple.h \
CompiledRecord.h \
CompiledSouffle.h \
SignalHandler.h \
SouffleInterface.h \
Expand Down
2 changes: 1 addition & 1 deletion src/Trie.h
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@

#pragma once

#include "CompiledRamTuple.h"
#include "CompiledTuple.h"
#include "Util.h"

#include <atomic>
Expand Down

0 comments on commit b0f95fe

Please sign in to comment.