MCPcopy Create free account
hub / github.com/FlyingFeather/DEA-SQL / rebuild_condition_val

Function rebuild_condition_val

single_eval.py:728–738  ·  view source on GitHub ↗
(condition)

Source from the content-addressed store, hash-verified

726
727
728def rebuild_condition_val(condition):
729 if condition is None or not DISABLE_VALUE:
730 return condition
731
732 res = []
733 for idx, it in enumerate(condition):
734 if idx % 2 == 0:
735 res.append(rebuild_cond_unit_val(it))
736 else:
737 res.append(it)
738 return res
739
740
741def rebuild_sql_val(sql):

Callers 1

rebuild_sql_valFunction · 0.70

Calls 1

rebuild_cond_unit_valFunction · 0.70

Tested by

no test coverage detected