I'm Sriram, a PhD student at the NUS School of Computing. You can find me at sriramsami.com.
The code for this project is available on GitHub.
I've always wondered if I've extracted the maximum laziness out of my timetables :)
No. However, NUSMods have a wonderful public-facing API at https://api.nusmods.com/v2/ that this optimizer uses, and that I am very grateful for. All API requests for module information are cached locally for a while to avoid hitting the API too much.
Yes and no. There have been a number of attempts (including my own previous one in 2015) to address this issue. This work is most closely inspired by https://modsplanner.tk/, which appears to be defunct. I would urge anyone interested to see the modsplanner team's technical report and work on their GitHub page.
The aim of this project was to do almost no computation on the server, and let clients (i.e., your browsers) do all of the heavy lifting. The solver used in this project can be very CPU-intensive to run, so this project would not scale well if the server was processing optimizations for many clients at the same time. It would also cost a fortune to host.
This work allows the optimizer to run on browsers at speeds that are very close to running it natively on a computer. This is mainly due to the amazing effort by Clément Pit-Claudel at MIT to enable the Microsoft Z3 solver to be run as a WebAssembly module.
The core of this system is the Microsoft Z3 SMT (Satisfiability Modulo Theories) solver, an incredible piece of work that enables a class of difficult problems to be solved quickly, if the problem can be encoded correctly. To run Z3 on the browser, I use the pre-release WebAssembly binaries and glue code from the z3.wasm project. The front-end is built using React.