solution.cs
来自「Data Structures and Algorithms with Obj」· CS 代码 · 共 22 行
CS
22 行
namespace Opus6
{
using System;
using System.Collections;
[Copyright("Copyright (c) 2001 by Bruno R. Preiss, P.Eng."), Version("$Id: Solution.cs,v 1.3 2001/09/11 12:04:04 brpreiss Exp $")]
public interface Solution
{
int Bound { get; }
bool IsComplete { get; }
bool IsFeasible { get; }
int Objective { get; }
IEnumerable Successors { get; }
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?