2022-06-02 22:23:01 +03:00
|
|
|
/* This software is licensed by the MIT License, see LICENSE file */
|
|
|
|
/* Copyright © 2022 Gregory Lirent */
|
|
|
|
|
|
|
|
#include "plug.h"
|
|
|
|
|
|
|
|
int main(int argc, char** argv) {
|
|
|
|
test_init(argc, argv);
|
2022-06-06 22:08:10 +03:00
|
|
|
|
2022-06-08 10:52:29 +03:00
|
|
|
set_t x = vset_random(36, 0.1);
|
2022-06-07 21:24:17 +03:00
|
|
|
|
|
|
|
while(vset_remove_random(&x, 0.1)) {}
|
2022-06-06 22:08:10 +03:00
|
|
|
vset_free(&x);
|
2022-06-02 22:23:01 +03:00
|
|
|
}
|