Skip to content

Latest commit

 

History

History
25 lines (20 loc) · 566 Bytes

README.md

File metadata and controls

25 lines (20 loc) · 566 Bytes

Lowest Common Ancestor in a Directed Acyclic Graph

Neimhin Robinson Gunning [email protected] Student Number: 16321701

Requirements

g++ (Any other c++ compiler will probably work, but they are not specified in the makefile)

Compilation

The normal program can be compiled with:

cd c++
make prog

The testsuite can be compiled with:

cd c++
make testsuite

Known issuse

This implementation does not check if the graph provided is a DAG. It will probably break in certain scenarios where the graph is cyclic.