Skip to content

Commit

Permalink
Fixed documentation.
Browse files Browse the repository at this point in the history
  • Loading branch information
pstutz committed Jan 26, 2016
1 parent b2055f5 commit 175be65
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/main/scala/com/signalcollect/AbstractVertex.scala
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ abstract class AbstractVertex[Id, State] extends Vertex[Id, State, Any, Any] {
/**
* This method is used by the framework in order to decide if the vertex' signal operation should be executed.
* The higher the returned value the more likely the vertex will be scheduled for executing its signal method.
* @return the score value. The meaning of this value depends on the thresholds set in {@link Graph#execute}.
* @return the score value.
*/
def scoreSignal: Double = {
if (edgesModifiedSinceSignalOperation) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,9 @@ import scala.util.Random
import com.signalcollect._

/**
* This algorithm attempts to find a vertex coloring.
* This algorithm attempts to find a vertex coloring.
* A valid vertex coloring is defined as an assignment of labels (colors)
* to vertices such that no two vertices that share an edge have the same label.
* to vertices such that no two vertices that share an edge have the same label.
*
* Usage restriction: this implementation *ONLY* works on *UNDIRECTED* graphs.
* In Signal/Collect this means that there is either no edge between 2 vertices
Expand Down

0 comments on commit 175be65

Please sign in to comment.