在此范围内未声明"无限"

'ifinite' was not declared in this scope

本文关键字:无限 未声明 范围内      更新时间:2023-10-16

我正在尝试编译shogun工具箱,但我得到了这个错误

    C:/shogun-3.0.0/shogun-3.0.0/src/shogun/../shogun/mathematics/Math.h: In static
    member function 'static int shogun::CMath::is_finite(double)':
    C:/shogun-3.0.0/shogun-3.0.0/src/shogun/../shogun/mathematics/Math.h:1255:20: er
    ror: 'ifinite' was not declared in this scope
    return ifinite(f);

函数本身看起来是这样的。

        inline static int is_finite(double)
        {      
        #if defined(isfinite) && !defined(SUNOS)
        return ifinite(f);
        #else
        return finite(f);
        #endif
        }

我相信这里也有类似的描述:http://www.alecjacobson.com/weblog/?p=1768,但我不确定,因为我不包括cmath。知道它可能是什么吗?

函数是isfinite,而不是ifinite

你不包括<cmath>,但根据幕府消息来源,它确实以错误的顺序包括<cmath><math.h>

#include <shogun/base/SGObject.h>
#include <shogun/lib/common.h>
#include <cmath>                             <<<<<<
#include <shogun/mathematics/Math.h>
#include <shogun/mathematics/lapack.h>
#include <shogun/io/SGIO.h>
#include <stdio.h>
#include <stdlib.h>
#include <math.h>                            <<<<<<

所以你应该使用std::isfinite

我刚刚从这里下载了shogun-3.0.0,并且在源代码的任何地方都没有出现字符串"ifinite"。Math.his_finite的定义是:

        /// checks whether a float is finite
        inline static int is_finite(double f)
        {
#if defined(isfinite) && !defined(SUNOS)
            return isfinite(f);
#else
            return finite(f);
#endif
        }

如果您在问题中输入的错误和源文本是正确的,那么可能您的源已经损坏。您应该下载源代码,然后重试。