16 lines
322 B
C#
16 lines
322 B
C#
|
|
using System;
|
|||
|
|
using System.Collections.Generic;
|
|||
|
|
using System.Linq;
|
|||
|
|
using System.Text;
|
|||
|
|
|
|||
|
|
namespace BotSharp.Algorithm.HiddenMarkovModel.Helpers
|
|||
|
|
{
|
|||
|
|
public class DiagnosticsHelper
|
|||
|
|
{
|
|||
|
|
public static void Assert(bool condition)
|
|||
|
|
{
|
|||
|
|
System.Diagnostics.Debug.Assert(condition);
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
}
|