File diff r23537:f6a6d4ce4bd5 → r23538:8df50944b27a
src/linkgraph/linkgraphjob.h
Show inline comments
 
@@ -47,13 +47,13 @@ private:
 
		uint undelivered_supply; ///< Amount of supply that hasn't been distributed yet.
 
		PathList paths;          ///< Paths through this node, sorted so that those with flow == 0 are in the back.
 
		FlowStatMap flows;       ///< Planned flows to other nodes.
 
		void Init(uint supply);
 
	};
 

	
 
	typedef SmallVector<NodeAnnotation, 16> NodeAnnotationVector;
 
	typedef std::vector<NodeAnnotation> NodeAnnotationVector;
 
	typedef SmallMatrix<EdgeAnnotation> EdgeAnnotationMatrix;
 

	
 
	friend const SaveLoad *GetLinkGraphJobDesc();
 
	friend class LinkGraphSchedule;
 

	
 
protected: