MTL library and C standard library conflict solution

Source: Internet
Author: User

Author: Zhu Jincan

Source: http://www.cnblogs.com/clever101

 

 

I want to write a recently intensive matrix operationProgramAnd thought of using the MTL library. But go to the official website of the MTL Library (Http://osl.iu.edu/research/mtl/download.php3)The downloaded files cannot be used in VS 2005. So I downloaded one from the Internet. The downloaded one is in conflict with the Max and Min macros of the C standard library (macro definition). To solve this conflict, we need to add the followingCode(When UsingUtils. hFunctions in the fileConflict will occur)

Namespace MTL
{
# Ifdef Max
# UNDEF Max
# Endif
# Ifdef min
# UNDEF Min
# Endif
}< P>

# include " MTL/MTL. h "
# include " MTL/Lu. h "
# include " MTL/utils. h "

In addition, I have uploaded the available versions to the csdn download channel. The address is: Download The MTL library.

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.