Skip to content

Commit

Permalink
a few minor changes
Browse files Browse the repository at this point in the history
  • Loading branch information
Andrew Rohne committed Aug 3, 2012
1 parent a868318 commit c70078c
Show file tree
Hide file tree
Showing 12 changed files with 258,305 additions and 4 deletions.
Binary file modified Debug/Path2CSV.exe
Binary file not shown.
Binary file modified Debug/Path2CSV.ilk
Binary file not shown.
Binary file modified Debug/Path2CSV.pdb
Binary file not shown.
258,300 changes: 258,300 additions & 0 deletions Debug/paths.csv

Large diffs are not rendered by default.

Binary file modified Path2CSV.sdf
Binary file not shown.
Binary file modified Path2CSV.suo
Binary file not shown.
4 changes: 2 additions & 2 deletions Path2CSV/Debug/Path2CSV.log
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Build started 8/3/2012 8:58:30 AM.
Build started 8/3/2012 9:09:07 AM.
1>Project "C:\SOURCE\Path2CSV\Path2CSV\Path2CSV.vcxproj" on node 2 (build target(s)).
1>InitializeBuildStatus:
Creating "Debug\Path2CSV.unsuccessfulbuild" because "AlwaysCreate" was specified.
Expand Down Expand Up @@ -26,4 +26,4 @@

Build succeeded.

Time Elapsed 00:00:01.28
Time Elapsed 00:00:01.15
Binary file modified Path2CSV/Debug/Path2CSV.obj
Binary file not shown.
Binary file modified Path2CSV/Debug/vc100.idb
Binary file not shown.
Binary file modified Path2CSV/Debug/vc100.pdb
Binary file not shown.
5 changes: 3 additions & 2 deletions Path2CSV/Path2CSV.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,9 @@ int _tmain(int argc, _TCHAR* argv[])
of.open(argv[2],iostream::trunc);
while((prrn=PathReaderReadNext(path,&prd))>0){
countPaths++;
if(countPaths % 100)
of << prd.I << ",";
if(countPaths % 1000==0)
cout << "Path " << countPaths << " of " << nPaths << endl;
of << prd.I << ",";
for(int pn=0;pn<prrn;pn++){
of << prd.nodes[pn];
if(prd.nodes[pn]!=prd.J)
Expand Down
Binary file modified ipch/path2csv-b4b1fef9/path2csv-b1ddb797.ipch
Binary file not shown.

0 comments on commit c70078c

Please sign in to comment.