From 5b94c5dba56f0509aa0e768b90bab8a34f4616c9 Mon Sep 17 00:00:00 2001 From: Reijo Keskitalo Date: Mon, 26 Aug 2024 12:16:40 -0700 Subject: [PATCH] dtype member was removed. Double precision is default. (#781) --- src/libtoast/src/toast_atm.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/libtoast/src/toast_atm.cpp b/src/libtoast/src/toast_atm.cpp index d96cccf0b..9d9cb8b13 100644 --- a/src/libtoast/src/toast_atm.cpp +++ b/src/libtoast/src/toast_atm.cpp @@ -1,5 +1,5 @@ -// Copyright (c) 2015-2020 by the parties listed in the AUTHORS file. +// Copyright (c) 2015-2024 by the parties listed in the AUTHORS file. // All rights reserved. Use of this source code is governed by // a BSD-style license that can be found in the LICENSE file. @@ -60,7 +60,6 @@ toast::CholmodCommon::CholmodCommon() { chcommon->print = 1; // Minimal verbosity } chcommon->itype = CHOLMOD_INT; // All integer arrays are int - chcommon->dtype = CHOLMOD_DOUBLE; // All float arrays are double chcommon->final_ll = 1; // The factorization is LL', not LDL' }