Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

devablxorexpr(3) [debian man page]

DEVABLXOREXPR(3)						   ABL FUNCTIONS						  DEVABLXOREXPR(3)

NAME
devablxorexpr - develops 'xor', 'nxor' in an expression. ORIGIN
This software belongs to the ALLIANCE CAD SYSTEM developed by the ASIM team at LIP6 laboratory of Universite Pierre et Marie CURIE, in Paris, France. Web : http://asim.lip6.fr/recherche/alliance/ E-mail : alliance-users@asim.lip6.fr SYNOPSYS
#include "abl101.h" chain_list *devablxorexpr( Expr ) chain_list *Expr; PARAMETERS
Expr Expression to develop. DESCRIPTION
devablxorexpr develops 'xor' or 'xnor' in Expr. The expression pointer Expr MUSTN'T be used after the call to this function. RETURN VALUE
devablxorexpr returns a pointer to the modified expression. EXAMPLE
#include "abl101.h" chain_list *Expr; Expr = createablbinexpr( ABL_XOR, createablatom( "a" ), createablatom( "b" ) ); Expr = devablxorexpr( Expr ); /* displays (a and (not b)) or ((not a) and b) */ viewablexpr( Expr, ABL_VIEW_VHDL ); SEE ALSO
abl(1), devdupablxorexpr(3). BUG REPORT
This tool is under development at the ASIM department of the LIP6 laboratory. We need your feedback to improve documentation and tools. ASIM
/LIP6 October 1, 1997 DEVABLXOREXPR(3)

Check Out this Related Man Page

DEVDUPABLXOREXPR(3)						   ABL FUNCTIONS					       DEVDUPABLXOREXPR(3)

NAME
devdupablxorexpr - duplicates and develops 'xor', 'nxor'. ORIGIN
This software belongs to the ALLIANCE CAD SYSTEM developed by the ASIM team at LIP6 laboratory of Universite Pierre et Marie CURIE, in Paris, France. Web : http://asim.lip6.fr/recherche/alliance/ E-mail : alliance-users@asim.lip6.fr SYNOPSYS
#include "abl101.h" chain_list *devdupablxorexpr( Expr ) chain_list *Expr; PARAMETERS
Expr Expression to develop. DESCRIPTION
devdupablxorexpr develops 'xor' or 'xnor' in Expr. RETURN VALUE
devdupablxorexpr returns a pointer to the modified expression. EXAMPLE
#include "abl101.h" chain_list *Expr1; chain_list *Expr2; Expr1 = createablbinexpr( ABL_XOR, createablatom( "a" ), createablatom( "b" ) ); Expr2 = devdupablxorexpr( Expr1 ); /* displays (a and (not b)) or ((not a) and b) */ viewablexpr( Expr2, ABL_VIEW_VHDL ); SEE ALSO
abl(1), devdupablxorexpr(3). BUG REPORT
This tool is under development at the ASIM department of the LIP6 laboratory. We need your feedback to improve documentation and tools. ASIM
/LIP6 October 1, 1997 DEVDUPABLXOREXPR(3)
Man Page

6 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Expr strange problem to me

Hi all, Please help me solve below issue. expr 04170000000 + 1 gives me -124967295 and offcourse I want this to be 04170000001 and it happens for some sort of number like some other 02300000000 02600000000 03800000000 I guess after exceeding certain range it is converting it somewhere... (2 Replies)
Discussion started by: Revansing
2 Replies

2. Shell Programming and Scripting

Expr issues

I have two variables that are set by a number i.e. recs_on_db=12 yesterdays_recs_on_db=10 i need to get the difference between the two and be able to set this in a variable I have tried expr but does not work: db_difference=`expr $recs_on_db - $yesterdays_recs_on_db` i get: expr:... (2 Replies)
Discussion started by: Pablo_beezo
2 Replies

3. Shell Programming and Scripting

Expr problem and other basic problems

Hello, I am new to the Bash scripting language, and was given a tutorial page on how to setup a file. However I am trying to use cygwin to run this file and it is not working. $ vi averagetime.sh # # # echo "Enter Dictorinary File Text " read dict echo "Enter Grid Name" read grid... (13 Replies)
Discussion started by: killerqb
13 Replies

4. Shell Programming and Scripting

Expr Syntex error

Hello, I am new to Shell programing. I want to add two numbers & show result. command I use are as under Echo Enter the two numbers read number d1 = ` expr $ num%10` num = `expr $ num/10` d2 = ` expr $ num%10` num = `expr $ num/10` sum = $ d1 + $ d2 echo the sum is $ sum I am getting... (1 Reply)
Discussion started by: pbchhaya
1 Replies

5. Shell Programming and Scripting

Expr: non-integer argument

This is my code.... It works correct, but does not work with 4 and 5. My program is about finding average. so when i run 4 5 it gives me error "expr: non-integer argument". But when i say sh average 45 67 it works. Whats wrong?how to fix it? sum=0 n=0 if then for i in $* do if ... (2 Replies)
Discussion started by: Natalie
2 Replies

6. Shell Programming and Scripting

Expr: non-numeric argument syntax error on line 1, teletype

Hi, I tried to look up the issue i'm experiencing, but i'm confused what's wrong with my script. After executing the script I'm getting the following error expr: non-numeric argument syntax error on line 1, teletype After some research, it seems that the problem relates to bc. I have... (1 Reply)
Discussion started by: nms
1 Replies