Yilou Wang
Yilou Wang
While using randomization for arrays, I noticed that only constrained randomization for packed arrays is supported. Unconstrained randomization and randomization for other types of arrays are not supported. This issue...
Hello, A patch to support unconstrained randomization for unpacked/packed arrays has been implemented. I'm also working on adding randomization support for other types of arrays. Additionally, I have included a...
Hi, This patch fixes the wrong assignment when dealing with the struct array. This wrong assignment happens not only in randomization case, but also in normal case. With this patch,...
The randomization logic encounters problems when dealing with arrays defined using multi-range indices, such as `unpacked_arr[3:1][9:3]`. Unlike single-index unpacked arrays like `unp_arr[3][8]`, where randomization works correctly, the multi-range array does...
When I tried with struct array like: ``` typedef struct { rand int field_a; rand int field_b; } simple_struct_t; rand simple_struct_t struct_array[3]; ``` The result shows, field a is not...