mirror of
https://github.com/gonum/gonum.git
synced 2025-10-05 07:06:54 +08:00

This code is based on the RDF N-Quad parsing code that I wrote for the Cayley graph database project in 2014. The code here does not include any code that was written by other members of the Cayley project and so is unencumbered by copyright ownership from that project. License addition is for the test suite from [1] linked from [2]. A second more restrictive license is possible if we are claiming spec compliance[3]. [1]https://www.w3.org/Consortium/Legal/2008/03-bsd-license [2]https://www.w3.org/Consortium/Legal/2008/04-testsuite-copyright.html [3]https://www.w3.org/Consortium/Legal/2008/04-testsuite-license.html
9 lines
417 B
Go
9 lines
417 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.
|
|
|
|
// Package rdf implements decoding the RDF 1.1 N-Quads line-based plain text
|
|
// format for encoding an RDF dataset.
|
|
// N-Quad parsing is performed as defined by http://www.w3.org/TR/n-quads/
|
|
package rdf // import "gonum.org/v1/gonum/graph/formats/rdf"
|