How to write SVA when the antecedent is changing at the same time when the sampling clock is getting off?

In reply to ViVer:
I don’t understand the issue.
($change(sig_a) |-> sig_b==0); says that when the sampled value of sig_a changes, then IN THE SAME CYCLE the sampled value of sign_b equals 0.
Your diagram "triggers @7ns, fails @8ns seems to indicate an assertion like:
($change(sig_a) |-> ##1 sig_b==0);
The fact that the clock turns off has nothing to do with this.
I don’t understand the issue, but maybe this is what you want:

property check_sigs;
@(posedge clk_1) disable iff (disable_check)
($change(sig_a) |-> @(negedge clk_1) sig_b==0);
// Checking the sig_b 0.5ns after the psoedge of clk_1. 
endproperty

Ben Cohen
http://www.systemverilog.us/ ben@systemverilog.us
** SVA Handbook 4th Edition, 2016 ISBN 978-1518681448

  1. SVA Package: Dynamic and range delays and repeats SVA: Package for dynamic and range delays and repeats | Verification Academy
  2. Free books:
  1. Papers:
    Understanding the SVA Engine,
    Verification Horizons - July 2020 | Verification Academy
    Reflections on Users’ Experiences with SVA, part 1
    Reflections on Users’ Experiences with SVA | Verification Horizons - March 2022 | Verification Academy
    Reflections on Users’ Experiences with SVA, part 2
    Reflections on Users’ Experiences with SVA, Part II | Verification Horizons - July 2022 | Verification Academy
    Understanding and Using Immediate Assertions
    Understanding and Using Immediate Assertions | Verification Horizons - December 2022 | Verification Academy
    SUPPORT LOGIC AND THE ALWAYS PROPERTY
    http://systemverilog.us/vf/support_logic_always.pdf
    SVA Alternative for Complex Assertions
    Verification Horizons - March 2018 Issue | Verification Academy
    SVA in a UVM Class-based Environment
    SVA in a UVM Class-based Environment | Verification Horizons | Verification Academy
    SVA for statistical analysis of a weighted work-conserving prioritized round-robin arbiter.
    https://verificationacademy.com/forums/coverage/sva-statistical-analysis-weighted-work-conserving-prioritized-round-robin-arbiter.
    Udemy courses by Srinivasan Venkataramanan (http://cvcblr.com/home.html)
    https://www.udemy.com/course/sva-basic/
    https://www.udemy.com/course/sv-pre-uvm/