I have a assertion some thing like below:
property READY;
@(posedge CLK)
(VALID & !READY )|-> ##[1:$] (!VALID | READY));
endproperty
ready: assert property (READY);
When i use above assertion it was giving the below warning:
Warning-[SVA-OPTCOV-LMFA] Large memory footprint assertion
The assertion ‘ready’ has the potential to consume a large amount of memory.
Please examine the assertion for the use of large or unbounded delays and repetitions.