Skip to content

Commit 57e2945

Browse files
byjtewanyzelman
authored andcommitted
Fix capitalization of include file names
1 parent 0ae4d73 commit 57e2945

File tree

2 files changed

+13
-13
lines changed

2 files changed

+13
-13
lines changed

include/graphblas/algorithms/triangle_count.hpp

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
#include <numeric>
3232
#include <vector>
3333

34-
#include <graphblas/utils/iterators/NonzeroIterator.hpp>
34+
#include <graphblas/utils/iterators/nonzeroIterator.hpp>
3535

3636
#include <graphblas.hpp>
3737

@@ -143,10 +143,10 @@ namespace grb {
143143
operators::mul< D1 >,
144144
identities::zero,
145145
identities::one >,
146-
class MulMonoid = Monoid< operators::mul< D1 >,
146+
class MulMonoid = Monoid< operators::mul< D1 >,
147147
identities::one >,
148-
class SumMonoid = Monoid< operators::add< size_t, D1, size_t >,
149-
identities::zero >
148+
class SumMonoid = Monoid< operators::add< size_t, D1, size_t >,
149+
identities::zero >
150150
>
151151
RC triangle_count(
152152
const TriangleCountAlgorithm algo,

tests/smoke/triangle_count.cpp

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
#include <inttypes.h>
2626

2727
#include <graphblas/algorithms/triangle_count.hpp>
28-
#include <graphblas/utils/Timer.hpp>
28+
#include <graphblas/utils/timer.hpp>
2929
#include <graphblas/utils/parser.hpp>
3030

3131
#include <graphblas.hpp>
@@ -81,12 +81,12 @@ void grbProgram( const input & data_in, output & out ) {
8181

8282
timer.reset();
8383
// Create a local parser
84-
grb::utils::MatrixFileReader<
84+
grb::utils::MatrixFileReader<
8585
void,
8686
std::conditional<
8787
( sizeof( grb::config::RowIndexType ) > sizeof( grb::config::ColIndexType ) ),
8888
grb::config::RowIndexType,
89-
grb::config::ColIndexType
89+
grb::config::ColIndexType
9090
>::type
9191
> parser( data_in.filename, data_in.direct );
9292
assert( parser.m() == parser.n() );
@@ -134,12 +134,12 @@ void grbProgram( const input & data_in, output & out ) {
134134
if( p.first == p.second ) {
135135
continue;
136136
}
137-
137+
138138
rows.push_back( p.first );
139139
cols.push_back( p.second );
140140
}
141141
std::vector< IntegerType > values( rows.size(), static_cast< IntegerType >( 1 ) );
142-
assert( SUCCESS ==
142+
assert( SUCCESS ==
143143
buildMatrixUnique( A, rows.data(), cols.data(), values.data(), values.size(), IOMode::SEQUENTIAL )
144144
);
145145
}
@@ -183,9 +183,9 @@ int main( int argc, char ** argv ) {
183183
if( !parse_arguments( argc, argv, in, err ) ) {
184184
return err;
185185
}
186-
186+
187187
std::cout << "Executable called with parameters " << in.filename << ", "
188-
<< "inner repititions = " << in.inner_rep << ", and outer reptitions = "
188+
<< "inner repititions = " << in.inner_rep << ", and outer reptitions = "
189189
<< in.outer_rep << std::endl;
190190

191191
// Run the test for all algorithms
@@ -248,8 +248,8 @@ int main( int argc, char ** argv ) {
248248
bool parse_arguments( int argc, char ** argv, input & in, int& err ) {
249249
// Check if we are testing on a file
250250
if( argc < 4 || argc > 6 ) {
251-
std::cerr << "Usages: \n\t"
252-
<< argv[ 0 ] << " <graph_filepath> <direct/indirect> <expected_triangle_count> (inner iterations) (outer iterations)"
251+
std::cerr << "Usages: \n\t"
252+
<< argv[ 0 ] << " <graph_filepath> <direct/indirect> <expected_triangle_count> (inner iterations) (outer iterations)"
253253
<< std::endl;
254254
err = 1;
255255
return false;

0 commit comments

Comments
 (0)