newfeasible.m

来自「UMDA. a kind of estimation of distributi」· M 代码 · 共 14 行

M
14
字号
function[is_feasible] = NewFeasible(s,i,Pos)% NewFeasible evaluates if a given move is feasible.  global InitConf;   if (size(s,2) <=2)       is_feasible=1;       return;   else       [Overlappings,Pos] =  CheckConstraint(Pos,i,s);        is_feasible = (Overlappings==0);   end% Last version 10/09/2005. Roberto Santana (rsantana@si.ehu.es) 

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?