我有comp_value
在1 .. 100
. 此外,我有一个输入变量period
(范围相同)。我需要涵盖comp_values
:[1..period]
和2 个范围[period+1 .. 100]
。像这样的东西:
cover some_event_e is {
item period using no_collect;
item comp_val using no_collect,
ranges = {
range([1..period], "Smaller_than_period");
range([period+1..100], "Bigger_than_period");
};
};
(代码会导致编译错误,因为不能在范围内写入变量)。有没有办法收集保险?谢谢您的帮助。