blob: b9c4f96847ef34a2c5b6d1a7053533aaefc90ce8 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
File: minver.c
Original provenience: SNU-RT Benchmark Suite for Worst Case Timing Analysis
2016-02-26:
- Added TACLeBench header to line 1
- Rename global variable a to minver_a
- Rename global variable b to minver_b
- Rename global variable c to minver_c
- Rename global variable aa to minver_aa
- Rename global variable a_i to minver_a_i
- Rename global variable e to minver_e
- Rename global variable det to minver_det
- Renamed function minver to minver_minver
- Renamed function mmul to minver_mmul
- Renamed function fabs to minver_fabs
- Renamed function main to minver_main
- Created new function main, calling minver_init, minver_main and
returning minver_return
- Reordered functions in source code: initialization- and
return-value-related functions first, followed by algorithm core
functions, followed by main functions
- Applied code formatting with astyle as in the example
2016-03-09:
- Removed static keyword for global variables
- Renamed global variables, prepended adpcm_dec
2016-05-23:
- Check sum added and checked against the expected value
2016-05-25:
- Corrected expected value
|