代码搜索:factor
找到约 6,651 项符合「factor」的源代码
代码结果 6,651
www.eeworm.com/read/101658/15822670
atg topsy0.atg
COMPILER Topsy
(* Topsy++ level 1 grammar - no procedures, functions, parameters
Grammar only - no code generation or constraint analysis
See "Compilers and Compiler generators - an introduct
www.eeworm.com/read/101658/15822673
atg isoexpr.atg
COMPILER Expr
(* Simple four-function calculator - ISO library required *)
IMPORT SWholeIO;
PROCEDURE GetNumber (VAR Int : INTEGER);
(* Convert latest token to integer value Int *)
www.eeworm.com/read/101657/15822680
bad bnf.bad
(* example of incorrect set of productions *)
EBNF = { Production } .
Production = nonterminal "=" Expression "." .
Expression = Term { "|" Term . (* missing closing } *)
T
www.eeworm.com/read/101657/15822682
atg spreads.atg
COMPILER Spreadsheet
USES Machine;
(* Toy spreadsheet incorporating simple stack based interpreter - version 2
P.D. Terry, Rhodes University, 1995 *)
VAR
Row, Col : INTEGER;
MustRefre
www.eeworm.com/read/101657/15822685
atg spread0.atg
COMPILER Spreadsheet
(* Grammar for a very simple spreadsheet *)
IGNORE CHR(9) .. CHR(13)
IGNORE CASE
COMMENTS FROM "(*" TO "*)"
CHARACTERS
letter = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdef
www.eeworm.com/read/101657/15822744
atg expr.atg
COMPILER Expr
PROCEDURE GetNumber (VAR Int : INTEGER);
(* Convert latest token to integer value Int *)
VAR
Error : INTEGER;
S : STRING;
BEGIN
ExprS.GetString(Exp
www.eeworm.com/read/101657/15822749
atg topsy0.atg
COMPILER Topsy
(* Topsy++ level 1 grammar - no procedures, functions, parameters
Grammar only - no code generation or constraint analysis
See "Compilers and Compiler generators - an introduct
www.eeworm.com/read/101557/15826883
m findmax2.m
function [gt,d]=findmax2(data, flag)
%FINDMAX2 Interpolates the maxima in a matrix of data.
%
% Function used for returning all the maxima in a set of
% data (matrices). The maxima are calculated
www.eeworm.com/read/101208/15841527
lma expr.lma
/*@A (C) 1992 Allen I. Holub */
/* This is the llama input file for the expression compiler.
*/
%term PLUS /* + */
TIMES /*
www.eeworm.com/read/100612/15868859
cpp brute.cpp
/*
* Program to factor numbers using brute force.
* Copyright (c) 1988-1997 Shamus Software Ltd.
*
* Requires: big.cpp
*/
#include
#include
using namespace st