From wikipedia, Consider the continuous linear system: $$\mathbf{\dot x} (t) = A(t)\mathbf{x}(t) + B(t)\mathbf{u}(t)$$
There exists a control $u$ from state $x_0$ at time $t_0$ to state $x_1$ at time $t_1 > t_0$ if and only if $x_1 - \phi(t_0,t_1)x_0$ is in the column space of $$W(t_0, t_1) = \int_{t_0}^{t_1}\phi(t_0,t)\mathbf{B}(t)\mathbf{B}(t)^T\phi(t_0,t)^Tdt$$ where $\phi$ is the state-transition matrix and $W(t_0,t_1) is the controllability Gramian.
In fact, if $\eta_0$ is a solution to $W(t_0,t_1)\eta = x_1 - \phi(t_0, t_1)x_0$ then a control given by $u(t) = -B(t)^T\phi(t_0,t)^T\eta_0$ would make the desired transfer.
Let's say the system is also time-invariant such that $\phi(t,t_0) = e^{\mathbf{A}(t -t_0)}$ which denotes the matrix expoential.
Also, let $t_0 = 0$ so the controllability Gramian reduces to: $$W(0, t_1) = \int_{0}^{t_1}e^{\mathbf{A}(t_1-\tau)}\mathbf{B}\mathbf{B}^Te^{\mathbf{A}^T(t_1-\tau)}d\tau$$
Question:
If I know the matrix/vectors $\mathbf{A}$, $\mathbf{B}$, $\mathbf{x_0}$ and $\mathbf{x_1}$ how do you check if $\mathbf{x_1} - e^{\mathbf{A}(t_1-0)}\mathbf{x_0}$ is in the column space of $W(0,t_1)$ without knowing $t_1$? That is, without knowing the time it would take to transition from $x_0$ to $x_1$? Is there a way to solve for this time? Do I need an explicit value of $t_1$ to get $u$?