Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
93 changes: 0 additions & 93 deletions qudarap/qutil.h

This file was deleted.

9 changes: 0 additions & 9 deletions sysrap/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,6 @@ set(SOURCES
SMap.cc
SCount.cc
SDigest.cc
SDigestNP.cc
SDirect.cc
SArrayDigest.cc

Expand All @@ -50,15 +49,12 @@ set(SOURCES
SGDML.cc
S_get_option.cc
STime.cc
SPack.cc
SBit.cc
SEnabled.cc
SRand.cc

CheckGeo.cc

SLabelCache.cc

SMath.cc

snd.cc
Expand Down Expand Up @@ -120,7 +116,6 @@ set(HEADERS

SBacktrace.h
SStackFrame.h
SProfile.h

ssys.h
SSys.hh
Expand Down Expand Up @@ -196,7 +191,6 @@ set(HEADERS



SDigestNP.hh
SDirect.hh
sdirect.h
SArrayDigest.hh
Expand Down Expand Up @@ -231,15 +225,12 @@ set(HEADERS
SColor.hh
SId.hh
SGDML.hh
SPack.hh
SBit.hh
SBitSet.h
SEnabled.hh
SRand.hh

CheckGeo.hh
SLabelCache.hh

SRng.hh

SName.h
Expand Down
5 changes: 2 additions & 3 deletions sysrap/SBnd.h
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ inline SBnd::SBnd(const NP* bnd_)

inline std::string SBnd::getItemDigest( int i, int j, int w ) const
{
return sdigest::Item(bnd, i, j, w ); // formerly SSim::GetItemDigest
return sdigest::Item(bnd, i, j).substr(0, w);
}
Comment on lines 124 to 127
inline std::string SBnd::descBoundary() const
{
Expand Down Expand Up @@ -354,7 +354,7 @@ inline std::string SBnd::DescDigest(const NP* bnd, int w ) // static
ss << std::setw(3) << i << " " ;
for(int j=0 ; j < nj ; j++)
{
std::string dig = sdigest::Item(bnd, i, j ) ; // formerly SDigestNP::Item
std::string dig = sdigest::Item(bnd, i, j);
std::string sdig = dig.substr(0, w);
ss << std::setw(w) << sdig << " " ;
}
Expand Down Expand Up @@ -732,4 +732,3 @@ inline NP* SBnd::reconstruct_sur() const
{
return nullptr ;
}

14 changes: 0 additions & 14 deletions sysrap/SDigestNP.cc

This file was deleted.

21 changes: 0 additions & 21 deletions sysrap/SDigestNP.hh

This file was deleted.

4 changes: 0 additions & 4 deletions sysrap/SLabelCache.cc

This file was deleted.

56 changes: 0 additions & 56 deletions sysrap/SLabelCache.hh

This file was deleted.

Loading
Loading