mirror of
https://github.com/gonum/gonum.git
synced 2025-10-23 07:09:27 +08:00

Test cases test001-in.nq to test062-in.nq are from [1] licensed under the W3C BSD 3-clause license. Test cases hogan*.nq are from the original paper used with permission. [1]https://json-ld.github.io/normalization/tests/index.html
17 lines
558 B
Go
17 lines
558 B
Go
// Copyright ©2020 The Gonum Authors. All rights reserved.
|
|
// Use of this source code is governed by a BSD-style
|
|
// license that can be found in the LICENSE file.
|
|
|
|
// +build !debug
|
|
|
|
package rdf
|
|
|
|
type debugger bool
|
|
|
|
const debug debugger = false
|
|
|
|
func (d debugger) log(depth int, args ...interface{}) {}
|
|
func (d debugger) logf(depth int, format string, args ...interface{}) {}
|
|
func (d debugger) logHashes(depth int, hashes map[string][]byte, size int) {}
|
|
func (d debugger) logParts(depth int, parts byLengthHash) {}
|