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


C# Arc.setVar1Row方法代码示例

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


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

示例1: AC3

        //Purpose: returns false if an inconsistency is found and true otherwise
        public bool AC3()
        {
            //AC3 Algorithm from the book

            //local variables: Queue of arcs, initially all the arcs in CSP
            Queue<Arc> arcQueue = new Queue<Arc>();

            //Add all the arcs into the queue
            for (int i = 0; i < boardWidthAndHeight; i++)
            {
                for (int j = 0; j < boardWidthAndHeight; j++)
                {
                    for (int k = 0; k < board[i, j].getConstraints().Count; k++)
                    {
                        Arc temp = new Arc();//used for loading arcs into the arc queue,
                        temp.setVar1Row(i);
                        temp.setVar1Column(j);

                        temp.setVar2Row(board[i, j].getConstraints()[k].getRow());
                        temp.setVar2Column(board[i, j].getConstraints()[k].getColumn());
                        arcQueue.Enqueue(temp);
                    }
                }
            }

            //while(queue is not empty) do
            while (arcQueue.Count > 0)
            {
                Arc temp = new Arc();//holds the object removed from the queue
                //(Xi, Xj) <- Remove First(queue)
                temp = arcQueue.Dequeue();

                //if (Revise(csp, Xi, Xj))
                if (revise(temp))
                {
                    //if (size of Domain == 0)
                    if (board[temp.getVar1Row(), temp.getVar1Column()].getDomain().Count == 0)
                    {
                        return false;
                    }
                    //for (each Xk in Xi, Neighbors - {Xj} do
                    for (int k = 0; k < board[temp.getVar1Row(), temp.getVar1Column()].getConstraints().Count; k++)
                    {
                        Arc temp2 = new Arc();//used for loading new arcs into the arc queue
                        //add (Xk, Xi) to the queue
                        temp2.setVar1Row(board[temp.getVar1Row(), temp.getVar1Column()].getConstraints()[k].getRow());
                        temp2.setVar1Column(board[temp.getVar1Row(), temp.getVar1Column()].getConstraints()[k].getColumn());

                        temp2.setVar2Row(temp.getVar1Row());
                        temp2.setVar2Column(temp.getVar1Column());
                        arcQueue.Enqueue(temp2);
                    }

                }

            }

            return true;
        }
开发者ID:VincentHeredia,项目名称:Sudoku,代码行数:60,代码来源:Board.cs


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