Implement BASOP W_min and W_max functions.
# What? Implement: ``` Word64 W_min( Word64 W_var1, Word64 W_var2 ); Word64 W_max( Word64 W_var1, Word64 W_var2 ); ``` # Why? There are a lot of places in the `ivas-basop` codebase where "float-like" operations are used (e.g. `BASOP_Util_Add_Mant32Exp`). Those operations are computationally expensive and sometimes can be avoided. However, removing such functions imply operating on 64-bits integers and some low-level BASOP 64-bits operations are missing (e.g. `W_min` and `W_max`).
task