代码搜索:Infinity

找到约 1,499 项符合「Infinity」的源代码

代码结果 1,499
www.eeworm.com/read/105882/15656230

c gdc.c

/* * Grand digital clock for curses compatible terminals * Usage: gdc [-s] [n] -- run for n seconds (default infinity) * Flags: -s: scroll * * modified 10-18-89 for curses (jrl) * 10-18-89 add
www.eeworm.com/read/177120/9469305

cpp graph.cpp

#include "Graph.h" using namespace Mido::Utility; #define INFINITY 0xFFFFFFFF Graph::Graph() : _N(0), _size(0) { } Graph::Graph(const dag_t& array) { _N = _size = array.size();
www.eeworm.com/read/425865/10312948

h const.h

#ifndef _CONST_H_ #define _CONST_H_ #define DSDVBUFSIZE 1024*16 #define DSDVPORT 2347 #define INFINITY 50 #define MAX(a,b) (((a)>(b))?(a):(b)) #define BROADCAST_ADDR inet_addr("255.255.255.25
www.eeworm.com/read/349226/10840270

lif sawtoot6.lif

#Life 1.05 #D Diagonal sawtooth with expansion factor 4 #D Population is unbounded but does not tend to infinity. Its graph #D is a sawtooth function with ever-increasing teeth. #D #D A p960 gu
www.eeworm.com/read/274065/10889075

cpp kruskal.cpp

// kruskal.cpp : Defines the entry point for the console application. // #include "stdafx.h" #include "stdio.h" #define OK 1 #define MAX_VERTEX_NUM 20 #define INFINITY 9999 typedef stru
www.eeworm.com/read/439376/6958004

cpp graph.cpp

#include "Graph.h" using namespace Mido::Utility; #define INFINITY 0xFFFFFFFF Graph::Graph() : _N(0), _size(0) { } Graph::Graph(const dag_t& array) { _N = _size = array.size();
www.eeworm.com/read/401397/7115967

m rbp_mds.m

% Robust performance comparison for three % controllers of the mass/damper/spring system % omega = logspace(-2,2,100); rp = ucomplexm('rp',zeros(1,2)); % % H_infinity controller clp_hin = lft(s
www.eeworm.com/read/458585/7293807

api javascript.api

Anchor Applet Area Array Boolean Button Checkbox Date E FileUpload Form Frame Function Hidden History Image Infinity JavaArray JavaClass JavaObject JavaPackage LN10 LN2 LOG10E
www.eeworm.com/read/454135/7397583

api javascript.api

Anchor Applet Area Array Boolean Button Checkbox Date E FileUpload Form Frame Function Hidden History Image Infinity JavaArray JavaClass JavaObject JavaPackage LN10 LN2 LOG10E
www.eeworm.com/read/144720/12775051

cpp 图-邻接矩阵-最短路径.cpp

#include // 定义 状态代码 及 数据类型 #define NULL 0 #define OK 1 #define ERROR 0 #define INFINITY 255 #define MAX_VERTEX_NUM 20 // ----------------------- 队列结构 -------------------------