What are the methods/techniques that one can use to solve linear(or integer) optimization problems ?
Googling around I stumbled upon the Simplex Method. But is that the only method used?
https://www.youtube.com/watch?v=2ACJ9ewUC6U <--- Is this an application of the Simplex Method ?
Let's take Excel Solver for instance. What method is this program using to tackle linear optimization problems?
Which are the techniques that we use today ?
Simplex is still a competitive method for many types of problems. That is the method that the Excel Solver uses.
I didn't watch the whole video but it doesn't look like they're using Simplex method - it looks like they are just graphing the constraints and identifying extreme points. There's a theorem that says if an optimal solution exists, then one of the extreme points is an optimal solution, so that's what they would be using there.
There are other methods for solving LPs. For very large problems, interior point methods are the favored method. These methods travel along the interior of the feasible region rather than along the extreme points. See for example this .pdf from MIT.