From 366b4d713e06dbdd4320bdda1dc0ebe4c38effd9 Mon Sep 17 00:00:00 2001
From: Jakob Gahde Constructs a new METIS reader that will retrieve edges from the input
-stream in. If any errors are encountered while initially parsing
-in, metis_input_exception will be thrown.Member Functions
metis_reader(std::istream& in);
edge_iterator begin(); @@ -266,7 +267,7 @@Member Functions
diff --git a/doc/metis.rst b/doc/metis.rst index 17eb51ae..4a917fa3 100644 --- a/doc/metis.rst +++ b/doc/metis.rst @@ -118,8 +118,9 @@ Member Functions metis_reader(std::istream& in); Constructs a new METIS reader that will retrieve edges from the input -stream ``in``. If any errors are encountered while initially parsing -``in``, ``metis_input_exception`` will be thrown. +stream ``in``. The reader will read from the very beginning of the stream, +and to this end, ``in`` must support seeking. If any errors are encountered +while initially parsing ``in``, ``metis_input_exception`` will be thrown. -----------------------------------------------------------------------------