Английская Википедия:Graph Modelling Language

Материал из Онлайн справочника
Версия от 15:10, 16 марта 2024; EducationBot (обсуждение | вклад) (Новая страница: «{{Английская Википедия/Панель перехода}} {{Distinguish|GraphML}}{{Infobox file format | name = | icon = | extension = .gml | mime = text/vnd.gml | developer = Michael Himsolt | type = | url = }} '''Graph Modeling Language''' (GML) is a hierarchical ASCII-based file format for describing graphs. It has been also named ''Graph Meta Language''. ==Example== A simple graph in GML format: <...»)
(разн.) ← Предыдущая версия | Текущая версия (разн.) | Следующая версия → (разн.)
Перейти к навигацииПерейти к поиску

Шаблон:DistinguishШаблон:Infobox file format Graph Modeling Language (GML) is a hierarchical ASCII-based file format for describing graphs. It has been also named Graph Meta Language.

Example

A simple graph in GML format:

graph [
	comment "This is a sample graph"
	directed 1
	id 42
	label "Hello, I am a graph"
	node [
		id 1
		label "node 1"
		thisIsASampleAttribute 42
	]
	node [
		id 2
		label "node 2"
		thisIsASampleAttribute 43
	]
	node [
		id 3
		label "node 3"
		thisIsASampleAttribute 44
	]
	edge [
		source 1
		target 2
		label "Edge from node 1 to node 2"
	]
	edge [
		source 2
		target 3
		label "Edge from node 2 to node 3"
	]
	edge [
		source 3
		target 1
		label "Edge from node 3 to node 1"
	]
]

Applications supporting GML

See also

References

Шаблон:Reflist

External links

Шаблон:Graph representations


Шаблон:Compu-lang-stub