www.pudn.com > sudoku.rar > PuzzleStatus.cs


//-------------------------------------------------------------------------- 
//  
//  Copyright (c) Microsoft Corporation.  All rights reserved.  
//  
//  File: PuzzleStatus.cs 
// 
//  Description: Enumeration for the current status of a puzzle. 
//  
//-------------------------------------------------------------------------- 
 
using System; 
 
namespace Microsoft.Sudoku 
{ 
	/// The status of a puzzle state. 
	[Serializable] 
	public enum PuzzleStatus 
	{ 
		/// The puzzle state has not been analyzed. 
		Unknown, 
		/// The puzzle state does not represent a valid solution nor is it in an inconsistent state. 
		InProgress, 
		/// The puzzle state represents a valid solution. 
		Solved, 
		/// The puzzle state represents a configuration that is known to be invalid. 
		CannotBeSolved 
	} 
}