Skip to Content.
Sympa Menu

cgal-discuss - [cgal-discuss] problem

Subject: CGAL users discussion list

List archive

[cgal-discuss] problem


Chronological Thread 
  • From: Kurt Klaus Horvath <>
  • To:
  • Subject: [cgal-discuss] problem
  • Date: Tue, 3 Apr 2018 12:34:39 +0200
  • Authentication-results: mail2-smtp-roc.national.inria.fr; spf=None ; spf=Pass ; spf=None
  • Ironport-phdr: 9a23:1zEzGxLg3y+i0yTQfdmcpTZWNBhigK39O0sv0rFitYgRL/7xwZ3uMQTl6Ol3ixeRBMOHs6kC07KempujcFRI2YyGvnEGfc4EfD4+ouJSoTYdBtWYA1bwNv/gYn9yNs1DUFh44yPzahANS47xaFLIv3K98yMZFAnhOgppPOT1HZPZg9iq2+yo9JDffwtFiCChbb9uMR67sRjfus4KjIV4N60/0AHJonxGe+RXwWNnO1eelAvi68mz4ZBu7T1et+ou+MBcX6r6eb84TaFDAzQ9L281/szrugLdQgaJ+3ART38ZkhtMAwjC8RH6QpL8uTb0u+ZhxCWXO9D9QLYpUjqg8qhrUgflhicJOTA67W/ZlNB/gblBrx69vRFy2ZLYbJ2XOfd4Y6jTfckaRW1EXstJUiJBH5m8b5cSBOQEOeZXtZT9p0ATphW8AgmsHv3vxSVUhn/2wKY31OchERzc3Aw8HNIOtG7brMjuNKsIUeC1y7PIzSvZYPNK2Tfw84fIchU7rvGNWbJ8a9beyU4qFw7ciFibtI/rPyuN2+gTr2SW6/BsWOGvhmI9tQ19vzuiyt0jh4TIgI8e10rK+j9jwIkvIN21UE57bsCgEJtXryyaMpF5QsImQ21xvyY6y6EKtYe1fCUFyZkr3RHfa/uAc4iH5hLsSvydLit/hHJgYL6/hhCy/la8yuDkSMW4zFJHojBGn9TMrHwByQHf58udRvZy/0qtwTOP2BrS6uFAL0A0j63bK5s5z74zi5oTq1jDHizymErska+WbV8o+uiv6+T9fLXpvIOcN49vhwHxN6QhgM2/AeAiPgcSWGib/Pyw1Kf/8k3hXLVKkvo2n7HFv5DVP8sbore1DBJU0oY49xm/Eiym0M8DkHkcLFNFfQqHgJLzN1HPJvD4F/a/jE62nDdl3fCVdoHmV57CJ3yGnLb6dqtm8GZdzhAyxJZR/cF6ELYEddHuQFO5l9jREwRxEwuu3e/7CJ0p1Z4ERWGLC7KCdqPVq0GB+uIHLOyFZYtTszH4fat2r8XyhGM0zAdONZKi2oEaPSjhT6ZWZn6BaH+pue8vVGIDvw4wVuvv0QTQXjtaZnL0VKU5tGhiVNCWSLzbT4Xou4SvmT+hF8QPNG9DA1GIV3zvctfcAqpeWGepOsZk1wc8e/2hRosmj0z8sQb7z/9gL7KR9HFG853k09dx6qvYkhRgrTE=

Hallo,
based on the sample "\examples\Ridges_3\Compute_Ridges_Umbilics.cpp" i try to setup my own application but there seems to be some kind of dependency or template problem which i dont really understand

1) i can compile the sample program and run it using visual studio 2015

2) i did try to setup a small standalone application and to isolate the problem. visual studio 2015 and also 2017 tell me:

error C2976: 'CGAL::Monge_via_jet_fitting': too few template arguments
error C2955: 'CGAL::Monge_via_jet_fitting': use of class template requires template argument list

it seems there is a problem with the interpretation of the of the template, here is my test-application
###############################
#include "stdafx.h"
#include <CGAL/Monge_via_jet_fitting.h>

int main()
{
typedef CGAL::Simple_cartesian<double>  Kernel;

typedef CGAL::Monge_via_jet_fitting<Kernel>    Monge_via_jet_fitting;
typedef Monge_via_jet_fitting::Monge_form      Monge_form;

    return 0;
}
##################################

is there any kind of special setting i need to apply? the cmake files used by cgal seems to do some settings which does fix that but i couldnt really find out what it is 

i use "CGAL-4.12-beta1"

\br & thx

Kurt



Archive powered by MHonArc 2.6.18.

Top of Page