| Line | |
|---|
| 1 | #include "mdd.h" |
|---|
| 2 | |
|---|
| 3 | /* |
|---|
| 4 | * MDD Package |
|---|
| 5 | * |
|---|
| 6 | * $Id: mdd_uminus.c,v 1.9 2002/08/24 21:48:15 fabio Exp $ |
|---|
| 7 | * |
|---|
| 8 | * Author: Timothy Kam |
|---|
| 9 | * |
|---|
| 10 | * Copyright 1992 by the Regents of the University of California. |
|---|
| 11 | * |
|---|
| 12 | * All rights reserved. Permission to use, copy, modify and distribute |
|---|
| 13 | * this software is hereby granted, provided that the above copyright |
|---|
| 14 | * notice and this permission notice appear in all copies. This software |
|---|
| 15 | * is made available as is, with no warranties. |
|---|
| 16 | */ |
|---|
| 17 | |
|---|
| 18 | mdd_t * |
|---|
| 19 | mdd_unary_minus_s( |
|---|
| 20 | mdd_manager *mgr, |
|---|
| 21 | int mvar1, |
|---|
| 22 | int mvar2) |
|---|
| 23 | { |
|---|
| 24 | return (mdd_unary_minus(mgr, mvar1, mvar2)); |
|---|
| 25 | } |
|---|
| 26 | |
|---|
| 27 | /*---------------------------------------------------------------------------*/ |
|---|
| 28 | /* Static function prototypes */ |
|---|
| 29 | /*---------------------------------------------------------------------------*/ |
|---|
| 30 | |
|---|
Note: See
TracBrowser
for help on using the repository browser.