2024-06-15 14:48:28 +00:00
|
|
|
package graph;
|
|
|
|
|
2024-07-07 21:07:56 +00:00
|
|
|
/**
|
|
|
|
* Abstract class representing a marking for vertices or edges in a graph.
|
|
|
|
* This class serves as a base class for specific types of markings.
|
|
|
|
*/
|
2024-06-15 14:48:28 +00:00
|
|
|
public abstract class Marking {
|
2024-07-07 21:07:56 +00:00
|
|
|
// No additional attributes or methods are defined in this abstract class.
|
|
|
|
// Specific types of markings (VertexMarking, EdgeMarking) should extend this class.
|
2024-06-15 14:48:28 +00:00
|
|
|
}
|