Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

poly(1) [debian man page]

POLY(1) 						      General Commands Manual							   POLY(1)

NAME
poly - the Poly/ML Standard ML implementation SYNOPSIS
poly DESCRIPTION
poly starts the Poly/ML shell. Poly/ML is an implementation of Standard ML developed by David Matthews at Cambridge and at the Laboratory for Foundations of Computer Science (LFCS) at Edinburgh. OPTIONS
-v Print the version of Poly/ML and exit. --help Print a list of the arguments and exit. -q Suppress the start-up message. -H size Set the initial heap size, in MB. --heap size Set the initial heap size, in MB. --immutable size Set the size of the immutables buffer, in MB. --mutable size Set the size of the mutables buffer, in MB. --timeslice timeslice Set the timeslice. --debug level Set the debugging level. SEE ALSO
http://www.poly.org The Poly/ML web site. Poly/ML Version 5.1 2007 POLY(1)

Check Out this Related Man Page

SML(1)							      General Commands Manual							    SML(1)

NAME
sml - SML compiler SYNOPSIS
sml [ rtsargs ] [ options ] [files ] DESCRIPTION
This manual page documents briefly the sml command. This manual page was written for the Debian distribution because the original program does not have a manual page. This is a compiler for Standard ML which may be used interactively. OPTIONS
A summary of options is included below. rtsargs: @SMLload=heapimage Start specified heap image. @SMLalloc=size Specify size of allocation area. @SMLcmdname=name Set command name. @SMLquiet Load heap image silently. @SMLverbose Show heap image load progress. @SMLobjects Show list of executable objects. @SMLdebug=file Write debugging info to file. options: -Dname=value Set CM variable to given value. -Dname Set CM variable to 1. -Uname Unset CM variable. -Ccontrol=value Set named control. -H Produce complete help listing. -h Produce minimal help listing. -hlevel Help with obscurity limit. -S List all current settings. -slevel Limited list of settings. files: file.cm CM.make or CM.autoload. -m Switch to CM.make. -a Switch to CM.autoload; default. file.sig Use. file.sml Use. file.fun Use. SEE ALSO
ml-build(1), ml-lex(1), ml-makedepend(1), ml-yacc(1). Standard ML is defined in The Definition of Standard ML, Robin Milner, Mads Tofte, Robert Harper and David MacQueen. AUTHOR
This manual page was written by Aaron Matthew Read <amread@nyx.net>, for the Debian GNU/Linux system (but may be used by others). October 25, 2002 SML(1)
Man Page

9 More Discussions You Might Find Interesting

1. What is on Your Mind?

Programming languages polyglots: how many languages you know?

Post what languages (including scripting) you know, why and where you think that language is most usable. Also include libraries in which you're really good at (libusb, gtk, qt, etc). assembly? C or C++? perl or python? pascal? bash or csh/tcsh? opengl? gtk or qt? mono? (27 Replies)
Discussion started by: redoubtable
27 Replies

2. UNIX for Dummies Questions & Answers

Poly character into mono character

Hi, Can anyone teach me by using perl. let say i have an input file that content like below: ->line_01 aaabbbDDDTTTUSSy ->line_02 cccdddEEESSSGTTT ->line_03 xxxxyyyyzzzzzzzzzz want the above input file content to become output file like below (every 2nd line after ->... become mono... (7 Replies)
Discussion started by: eisya10
7 Replies

3. Programming

how to bevel the edges of polyon

Hi i have written the code for star shape object in opengl but i am not able to bevel the edges of the star.COULD SOMEONE KINDLY TELL ME HOW CAN I BEVEL THE EDGES OF THE STAR SHAPE. #include <windows.h> #include <math.h> #include <GL/gl.h> #include <GL/glu.h> #include <freeglut.h> #include... (1 Reply)
Discussion started by: sumit_kang
1 Replies

4. UNIX for Dummies Questions & Answers

How to get data only inside polygon created by points which is part of whole data from file?

hiii, Help me out..i have a huge set of data stored in a file.This file has has 2 columns which is latitude & longitude of a region. Now i have a program which asks for the number of points & based on this number it asks the user to enter that latitude & longitude values which are in the same... (7 Replies)
Discussion started by: reva
7 Replies

5. Programming

this code for addind polynomials using linked lists showed segmentation error..any help pls..

the error occurs in the function() "add" used... #include<stdio.h> #include<malloc.h> struct node { int exp; int coef; struct node * link; }; struct node * create_list(struct node *,int,int); void display(struct node *); struct node * add(struct node *,struct node *); ... (3 Replies)
Discussion started by: mscoder
3 Replies

6. UNIX for Dummies Questions & Answers

awk code to process column pairs and find those with more than 1 set of possible values

Hi, I have a very wide dataset with pairs of columns starting from column 7 onwards (see example below). 0 123456 -1 0 0 -9 0 0 1 2 2 2 1 1 1 1 2 2... 0 123457 -1 0 0 -9 1 2 1 1 2 2 0 0 0 0 2 2... 0 123458 -1 0 0 -9 0 0 1 2 2 2 1 1 2 2 1 2... 0 123459 -1 0 0 -9 1 2 0 0 2 2 1 1 1 2 1 1...... (2 Replies)
Discussion started by: kasan0
2 Replies

7. Programming

Polymorphism delete vector problem

Hi all Really need some help here, i have a vector of pointer "vector<*e.g>store" i need to delete one of the chosen container and it seem like the normal way of deleting a vector cannot work! P.S new to polymorphism Thank Here is a cut out of my codes for(unsigned... (1 Reply)
Discussion started by: GQiang
1 Replies

8. Shell Programming and Scripting

Script to solve second order (polynomial) interpolation

Currently I have awk command to do linear interpolation awk ' { P=$2 I=$1 } END { j=0; s=I; t=I for(i=m;i<=n;i++) { if(I && i>t) { j++; s=I; t=I } print i, P+(i-s)*(P-P)/(t-s) } } ' m=1 n=8 infile FILE CONTENT... (8 Replies)
Discussion started by: Tzeronone
8 Replies

9. Shell Programming and Scripting

Create polygon around dot

Dear Masters, Kindly need your help to solve my issue.. My goal is create a polygon around "dot" (x,y coordinate) lets say we have some dot as below (these coordinates have meter as unit) 588237.20 5768355.50 588337.90 5768402.50 588459.70 5768436.00 588584.30 ... (7 Replies)
Discussion started by: ipatah
7 Replies