I am unable to find BSearch.mpws anywhere besides in scripts storage.
The path to get to the file is: mathpiperide\src\library_apps\mathpiper4\storage\scriptsstorage\lists\BSearch.mpws
For the test that is located in lists_tests.mpws where should I move this test to?
/* todo:tk:commenting out for minimal version of the scripts.
Testing("Binary searching");
Verify(BSearch(100,[[n],n^2-15]), -1);
Verify(BSearch(100,[[n],n^2-16]), 4);
Verify(BSearch(100,[[n],n^2-100002]), -1);
Verify(BSearch(100,[[n],n^2-0]), -1);
Verify(FindIsq(100,[[n],n^2-15]), 3);
Verify(FindIsq(100,[[n],n^2-16]), 4);
Verify(FindIsq(100,[[n],n^2-100002]), 100);
Verify(FindIsq(100,[[n],n^2-0]), 1);
*/