Page MenuHomec4science

percolation.cpp
No OneTemporary

File Metadata

Created
Wed, Aug 14, 19:55

percolation.cpp

#include <post.h>
int main(int argc, char *argv[])
{
post_p::postprocessing test(argv[1]);
test.check_percolation();
if (argc < 3)
test.dump_percolation_file();
else
test.dump_percolation_file(argv[2]);
return 0;
}

Event Timeline