We have an exciting announcement about badges coming in May 2025. Until then, we will temporarily stop issuing new badges for course completions and certifications. However, all completions will be recorded and fulfilled after May 2025.
General

General

    • FAQFAQ
      Participant

      The Fluent makefile uses the ‘ansi’ flag which excludes certain library functions, e.g. the error function in . You will get a compiler warning “implicit declaration” if you try to use such a function. You will end up with a function returning int, regardless of the definition (in most cases total nonsense). You can use these functions by declaring them explicitly in your source file: double erf(double). This will lead to a useable error function (of course, it has to be defined in your library, which is platform dependent).