12#ifndef ARCANE_INDEXEDSPACE_H
13#define ARCANE_INDEXEDSPACE_H
34 IndexedSpace(
const IndexedSpace& src) {}
36 virtual ~IndexedSpace() {}
38 IndexedSpace& operator=(
const IndexedSpace& src) {
return *
this;}
43 virtual bool isSubspace(
const IndexedSpace& other)
const {
return true;}
48 virtual bool isSame(
const IndexedSpace& other)
const {
return true;}
53 virtual bool isCompatible(
const IndexedSpace& other)
const {
return true;}
57class EmptyIndexedSpace:
public IndexedSpace
60 EmptyIndexedSpace() {}
61 EmptyIndexedSpace(
const IndexedSpace& src) {}
63 ~EmptyIndexedSpace() {}
68 bool isSubspace(
const IndexedSpace& other)
const {
return false;}
73 bool isSame(
const IndexedSpace& other)
const {
return false;}
bool isSubspace(const IndexedSpace &other) const
Return whether the given space is a subspace.
bool isSame(const IndexedSpace &other) const
Return if the given space and us are the same.
bool isCompatible(const IndexedSpace &other) const
Return if the spaces can interoperate.
Indexed set/space to define matrix and vector support.
virtual bool isSame(const IndexedSpace &other) const
Return if the given space and us are the same.
virtual bool isCompatible(const IndexedSpace &other) const
Return if the spaces can interoperate.
virtual bool isSubspace(const IndexedSpace &other) const
Return whether the given space is a subspace.