Logically, if the nbEmployeesMax >= 5000, then the nbEmployeesMin could be less than 5000. For example, the actual number of employees for a company is 10, and our estimation is [5, 10000], a very loose range. And nbEmployeesMax >= 5000 will match this company, but we couldn’t say the number of employees of it is more than 5000, right?
Max -> Min for the example.
Logically, if the
nbEmployeesMax >= 5000
, then thenbEmployeesMin
could be less than 5000. For example, the actual number of employees for a company is 10, and our estimation is [5, 10000], a very loose range. AndnbEmployeesMax >= 5000
will match this company, but we couldn’t say the number of employees of it is more than 5000, right?