View full-text article in PMC Sensors (Basel). 2021 May 13;21(10):3411. doi: 10.3390/s21103411 Search in PMC Search in PubMed View in NLM Catalog Add to search Copyright and License information © 2021 by the authors. Licensee MDPI, Basel, Switzerland. This article is an open access article distributed under the terms and conditions of the Creative Commons Attribution (CC BY) license (https://creativecommons.org/licenses/by/4.0/). PMC Copyright notice Algorithm 1: CGA: c-set generation algorithm 1:procedureCGA 2: C:=define_initial_feasible_cSets_list(); 3: new_cSet_generated:=true; 4: while (new_cSet_generated=true) do 5: λ*:=solve_DMP(C); 6: c*:=solve_PP(λ*); 7: if P(c*,λ*)>0 then 8: C:=C∪{c*}; 9: else 10: new_cSet_generated:=false; 11: end if 12: end while 13:end procedure