| Algorithm 1. Pseudocode of the MF and SR identification algorithm. | |
| INPUT: s, configList | |
| OUTPUT:foundConfig | |
| 1: 2: 3: 4: 5: 6: 7: 8: 9: 10: |
foundConfig ← <MF = ∅, SR = ∅> minDistance ← ∞ SRList = getSRList(configList) for each SR in SRList do SSR ← decodeSignal(s, SR) <MF, d> ← findFittestMF(SSR, getMFList(configList, SR)) if d < minDistance then foundConfig ← <MF, SR> minDistance ← d return foundConfig |