| Commit message (Collapse) | Author | Age |
| |
|
|
|
|
|
|
|
|
| |
Silences a Clang++ warning/error:
> In file included from src/edf/qpa.cpp:12:
> include/edf/qpa.h:7:18: error: private field 'm' is not used [-Werror,-Wunused-private-field]
> unsigned int m;
> ^
> 1 error generated.
|
| |
|
|
| |
schedulers in native code and easy max lateness computation.
|
| | |
|
| |
|
|
| |
Based on Zhang and Burns (2009), "Schedulability Analysis for Real-Time Systems with EDF Scheduling", IEEE Transactions on Computers, Vol 58, No 9.
|
| | |
|
| | |
|
| |
|
|
|
|
| |
integral_t == integral time units
fractional_t == fractions of integral time units
This is hopefully less of an eyesore than mpq_class and mpz_class.
|
| |
|
|
|
| |
Give up after running for 5 seconds. This is almost never triggered, but once in a while
this should help to catch a pseudo-polynomial excursion.
|
|
|
Based on the code available at http://www.cs.unc.edu/~bbb/diss,
this is a cleaned-up version of schedcat intended to serve as
the basis for all further development.
Notable improvements: more unit tests and a cleaner module structure.
|