当前位置: 首页>>代码示例>>C#>>正文


C# Specification.GetOperatorMap方法代码示例

本文整理汇总了C#中Specification.GetOperatorMap方法的典型用法代码示例。如果您正苦于以下问题:C# Specification.GetOperatorMap方法的具体用法?C# Specification.GetOperatorMap怎么用?C# Specification.GetOperatorMap使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在Specification的用法示例。


在下文中一共展示了Specification.GetOperatorMap方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。

示例1: WriteOperators

        private static void WriteOperators(StringBuilder SB, Specification S, G25.CG.Shared.CGdata cgd, bool declOnly)
        {
            Dictionary<string, List<G25.Operator>> operatorMap = S.GetOperatorMap();
            Dictionary<string, bool> boundOperators = new Dictionary<string,bool>();

            // for all functions, find the matching op, write function
            foreach (G25.fgs FGS in S.m_functions)
            {
                if (!operatorMap.ContainsKey(FGS.OutputName)) continue;
                //if (FGS.MetricName != S.m_metric[0].m_name) continue; // only bind for default metric

                // check if all argument types are built-in
                bool allArgTypesAreBuiltin = true;
                for (int i = 0; i < FGS.m_argumentTypeNames.Length; i++)
                    if (!S.IsFloatType(FGS.m_argumentTypeNames[i]))
                        allArgTypesAreBuiltin = false;

                if (allArgTypesAreBuiltin) continue; // cannot overload operator for builtin types

                List<G25.Operator> opList = operatorMap[FGS.OutputName];

                foreach (G25.Operator op in opList)
                {
                    if (op.NbArguments == FGS.NbArguments)
                    {
                        // check if this operator already bound to function with the same arguments
                        string uniqueOpArgId = op.Symbol;
                        for (int a = 0; a < FGS.NbArguments; a++)
                            uniqueOpArgId += "~_~" + FGS.m_argumentTypeNames[a];
                        if (boundOperators.ContainsKey(uniqueOpArgId)) continue;
                        else boundOperators[uniqueOpArgId] = true;

                        // write this operator for all float types
                        WriteOperator(SB, S, cgd, declOnly, FGS, op);

                    }
                }
            }
        }
开发者ID:Sciumo,项目名称:gaigen,代码行数:39,代码来源:operators.cs

示例2: WriteFunctionShortcuts

        /// <summary>
        /// Writes all shortcuts for 'type'.
        /// </summary>
        /// <param name="SB">Where the code goes.</param>
        /// <param name="S">Used for namespace.</param>
        /// <param name="cgd">Not used yet.</param>
        /// <param name="FT">Float point type of 'type'.</param>
        /// <param name="type">The type for which the function should be written.</param>
        public static void WriteFunctionShortcuts(StringBuilder SB, Specification S, G25.CG.Shared.CGdata cgd, FloatType FT, G25.VariableType type)
        {
            Dictionary<string, List<G25.Operator>> operatorMap = S.GetOperatorMap();
            Dictionary<string, bool> boundOperators = new Dictionary<string, bool>();

            foreach (G25.fgs fgs in S.m_functions)
            {
                if ((type is G25.SMV) && fgs.IsConverter(S))
                {
                    G25.SMV smv = (G25.SMV)type;
                    if (fgs.IsConverterSource(S, (G25.SMV)type, FT))
                    {
                        // write converter here . . .
                        //SB.AppendLine("// converter source here!");
                    } else if (fgs.IsConverterDestination(S, smv, FT))
                    {
                        // write converter here . . .
                        Converter.WriteMemberConverter(SB, S, cgd, FT, fgs, (G25.SMV)S.GetType(fgs.ArgumentTypeNames[0]), smv);
                    }
                }
                else if (fgs.GetSupportedByPlugin() && (fgs.NbArguments >= 1) && (Array.IndexOf(fgs.FloatNames, FT.type) >= 0))
                {

                    // get function arguments
                    bool computeMultivectorValue = false;
                    G25.CG.Shared.FuncArgInfo[] FAI = null;
                    try
                    {
                        FAI = G25.CG.Shared.FuncArgInfo.GetAllFuncArgInfo(S, fgs, fgs.NbArguments, FT, "not set", computeMultivectorValue);
                    }
                    catch (Exception ex)
                    {
                        if ((type is G25.GMV) && (FT == S.m_floatTypes[0])) // only warn once
                            Console.WriteLine("Warning: cannot generate shortcut to " + fgs.ToString());
                        continue;
                    }

                    // if type matches, write the shortcut, and possibly an operator
                    if (FAI[0].TypeName.Equals(type.GetName()))
                    {
                        WriteFunctionShortcut(SB, S, cgd, FT, type, fgs, FAI);
                        if (S.OutputCSharpOrJava())
                            removeMvInterfaces(FAI); // arguments to operators need to be of the multivector type, not the multivector interface type
                        WriteOperatorShortcut(SB, S, cgd, FT, type, fgs, FAI, operatorMap, boundOperators);
                    }

                }
            }
        }
开发者ID:Sciumo,项目名称:gaigen,代码行数:57,代码来源:shortcut.cs


注:本文中的Specification.GetOperatorMap方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。