本文整理汇总了C#中G25.OutputCpp方法的典型用法代码示例。如果您正苦于以下问题:C# G25.OutputCpp方法的具体用法?C# G25.OutputCpp怎么用?C# G25.OutputCpp使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类G25
的用法示例。
在下文中一共展示了G25.OutputCpp方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: GetRuntimeGpTableName
/// <param name="S">Specification.</param>
/// <param name="M">Metric</param>
/// <param name="g1">Input grade/group 1.</param>
/// <param name="g2">Input grade/group 2.</param>
/// <param name="gd">Destination grade/group.</param>
/// <param name="fromOutsideRuntimeNamespace">When calling the function from outside the runtime namespace, set this param to true.</param>
/// <returns>The name of the table which is used to compute <c>gd = g1 g2</c> using metric <c>M</c></returns>
public static string GetRuntimeGpTableName(G25.Specification S, G25.Metric M, int g1, int g2, int gd, bool fromOutsideRuntimeNamespace)
{
if (S.OutputCppOrC())
{
string prefix = "";
if (fromOutsideRuntimeNamespace && (S.OutputCpp()))
prefix = Main.RUNTIME_NAMESPACE + "::";
return prefix + S.m_namespace + "_runtimeGpProductTable_" + M.m_name + "_" + g1 + "_" + g2 + "_" + gd;
}
else
{
return "runtimeGpProductTable_" + M.m_name + "_" + g1 + "_" + g2 + "_" + gd;
}
}
示例2: GetRuntimeComputeGpFuncName
/// <param name="S">Specification.</param>
/// <param name="FT">Float type</param>
/// <param name="fromOutsideRuntimeNamespace">When calling the function from outside the runtime namespace, set this param to true.</param>
/// <returns>The name of the function used to compute the geometric product in real-time (depends only on the floating point type)</returns>
public static string GetRuntimeComputeGpFuncName(G25.Specification S, G25.FloatType FT, bool fromOutsideRuntimeNamespace)
{
if (S.OutputCppOrC())
{
string prefix = "";
if (fromOutsideRuntimeNamespace && (S.OutputCpp()))
prefix = Main.RUNTIME_NAMESPACE + "::";
return prefix + S.m_namespace + "_runtimeComputeGp_" + FT.type;
}
else if (S.OutputCSharp())
{
return "RuntimeComputeGp_" + FT.type;
}
else
{
return "runtimeComputeGp_" + FT.type;
}
}