linear_solver: Add missing import region tag

This commit is contained in:
Mizux Seiha
2020-12-07 16:00:32 +01:00
parent 9ca0a26ac2
commit 0e615d5ad9
3 changed files with 6 additions and 1 deletions

View File

@@ -12,8 +12,10 @@
// limitations under the License.
// [START program]
// [START import]
using System;
using Google.OrTools.LinearSolver;
// [END import]
public class LinearProgrammingExample
{

View File

@@ -13,12 +13,13 @@
// [START program]
package com.google.ortools.linearsolver.samples;
// [START import]
import com.google.ortools.Loader;
import com.google.ortools.linearsolver.MPConstraint;
import com.google.ortools.linearsolver.MPObjective;
import com.google.ortools.linearsolver.MPSolver;
import com.google.ortools.linearsolver.MPVariable;
// [END import]
/** Simple linear programming example.*/
public class LinearProgrammingExample {

View File

@@ -13,8 +13,10 @@
// Minimal example to call the GLOP solver.
// [START program]
// [START import]
using System;
using Google.OrTools.LinearSolver;
// [END import]
public class SimpleLpProgram
{