Skip to content

Ridoger/code_scheduler

 
 

Repository files navigation

CSC3060 Spring 2026 Project 3: Code Scheduling

For a full description of the project, see the project handout at csc3060_spring2026_project3_cs.pdf

If you see any issues with the instruction or code, please feel free to raise a GitHub issue or open a pull request with a fix.

Setup

Environment

  • CMake 3.14 or higher version
  • Compiler should support C++17 (GCC 7+, Clang 5+, MSVC 2017+)
mkdir build
cd build
cmake ..
make -j4

Run unit tests

cd build
ctest                        # run all test
ctest -R Latency             # pattern matching "Latency"
ctest -V                     # verbose output
ctest -j4                    # parallel execution

Initially, all tests should fail with before you implement the function

Reference

License

MIT License

About

Project 2 of course csc3060 in CUHKSZ

Topics

Resources

License

Stars

Watchers

Forks

Contributors

Languages

  • C++ 93.7%
  • Typst 3.0%
  • CMake 1.7%
  • Python 1.6%