Initializing help system before first use

Creating a problem

Create an empty optimization problem myproblem as follows:

myproblem = xp.problem ()

A name can be assigned to a problem upon creation:

myproblem = xp.problem (name = "My first problem")

The problem has no variables or constraint at this point.